dockertools/Dockerfile

20 lines
372 B
Text
Raw 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 \
&& apt-get install -y zsh git neovim tmux stow python3-pip \
&& pip3 install pynvim \
2023-03-09 05:35:22 +00:00
&& 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
2019-05-23 13:47:23 +00:00
CMD ["/usr/bin/zsh"]