From 86fd2cff65638e0e09ea7efe722b4b77371a9302 Mon Sep 17 00:00:00 2001 From: Andrew Davidson Date: Mon, 27 Sep 2021 16:51:13 -0700 Subject: [PATCH] reverting needlessly to fedora, fixing nvim plugin installs, and cleanup --- Dockerfile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7b4d975..a4082d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 -RUN git clone https://github.com/amdavidson/dotfiles.git /root/.dotfiles && \ - cd /root/.dotfiles && \ - stow -t /root zsh git vim tmux +RUN git clone https://github.com/amdavidson/dotfiles.git /root/.dotfiles \ +&& cd /root/.dotfiles \ +&& stow -t /root zsh git vim tmux -RUN vim +"PlugInstall --sync" +qa +RUN nvim --headless +"PlugInstall --sync" +qa CMD ["/usr/bin/zsh"]