2020-01-17 19:16:14 +00:00
|
|
|
FROM debian:latest
|
2019-05-22 22:25:05 +00:00
|
|
|
|
2020-01-17 19:16:14 +00:00
|
|
|
RUN apt-get update && apt-get install -y zsh git neovim tmux stow && apt-get clean
|
2019-05-22 22:25:05 +00:00
|
|
|
|
2019-06-05 19:27:37 +00:00
|
|
|
WORKDIR /root
|
2019-05-22 22:25:05 +00:00
|
|
|
|
2019-06-05 19:27:37 +00:00
|
|
|
RUN git clone https://github.com/amdavidson/dotfiles.git /root/.dotfiles && \
|
|
|
|
cd /root/.dotfiles && \
|
|
|
|
stow -t /root zsh git vim tmux
|
2019-05-23 02:57:50 +00:00
|
|
|
|
2019-05-23 13:47:23 +00:00
|
|
|
RUN vim +"PlugInstall --sync" +qa
|
|
|
|
|
2019-05-22 22:25:05 +00:00
|
|
|
CMD ["/usr/bin/zsh"]
|
|
|
|
|
|
|
|
|
|
|
|
|