dockertools/Dockerfile
Andrew Davidson 6f930acb98
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Moving back to Debian, closes #1
2023-03-08 21:35:22 -08:00

19 lines
372 B
Docker

FROM debian:bullseye-slim
RUN apt-get update \
&& apt-get install -y zsh git neovim tmux stow python3-pip \
&& pip3 install pynvim \
&& apt-get clean
WORKDIR /root
RUN git clone https://github.com/amdavidson/dotfiles.git /root/.dotfiles \
&& cd /root/.dotfiles \
&& stow -t /root zsh git vim tmux
RUN nvim --headless +"PlugInstall --sync" +qa
CMD ["/usr/bin/zsh"]