2023-03-09 05:35:22 +00:00
|
|
|
FROM debian:bullseye-slim
|
2019-05-22 22:25:05 +00:00
|
|
|
|
2023-03-09 05:35:22 +00:00
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install -y zsh git neovim tmux stow python3-pip \
|
2021-09-27 23:51:13 +00:00
|
|
|
&& pip3 install pynvim \
|
2023-03-09 05:35:22 +00:00
|
|
|
&& 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
|
|
|
|
2021-09-27 23:51:13 +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
|
|
|
|
2021-09-27 23:51:13 +00:00
|
|
|
RUN nvim --headless +"PlugInstall --sync" +qa
|
2019-05-23 13:47:23 +00:00
|
|
|
|
2019-05-22 22:25:05 +00:00
|
|
|
CMD ["/usr/bin/zsh"]
|
|
|
|
|
|
|
|
|
|
|
|
|