dockertools/Dockerfile

18 lines
338 B
Text
Raw Permalink Normal View History

2023-03-09 05:35:22 +00:00
FROM debian:bullseye-slim
2023-03-09 05:35:22 +00:00
RUN apt-get update \
2023-03-10 06:24:05 +00:00
&& apt-get install -y --no-install-recommends git neovim tmux stow python3-pip \
2023-03-09 05:35:22 +00:00
&& apt-get clean
WORKDIR /root
RUN git clone https://github.com/amdavidson/dotfiles.git /root/.dotfiles \
2023-03-10 06:24:05 +00:00
&& rm /root/.bash* \
&& cd /root/.dotfiles \
2023-03-10 06:24:05 +00:00
&& stow -t /root bash git tmux
2019-05-23 13:47:23 +00:00
CMD ["/usr/bin/zsh"]