reverting needlessly to fedora, fixing nvim plugin installs, and cleanup

This commit is contained in:
Andrew Davidson 2021-09-27 16:51:13 -07:00
parent da3ea41150
commit 86fd2cff65
Signed by: amd
GPG key ID: 17AF8F2A49CF25C6

View file

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