dockertools/Dockerfile
Andrew Davidson a6ea6f6ac5
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
simplifying to reduce install size
2023-03-09 22:24:05 -08:00

17 lines
338 B
Docker

FROM debian:bullseye-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends git neovim tmux stow python3-pip \
&& apt-get clean
WORKDIR /root
RUN git clone https://github.com/amdavidson/dotfiles.git /root/.dotfiles \
&& rm /root/.bash* \
&& cd /root/.dotfiles \
&& stow -t /root bash git tmux
CMD ["/usr/bin/zsh"]