dockertools/Dockerfile

17 lines
320 B
Text
Raw Normal View History

2020-01-17 19:16:14 +00:00
FROM debian:latest
2020-01-17 19:16:14 +00:00
RUN apt-get update && apt-get install -y zsh git neovim tmux stow && 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
2019-05-23 13:47:23 +00:00
RUN vim +"PlugInstall --sync" +qa
CMD ["/usr/bin/zsh"]