aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2017-09-25 11:20:06 -0600
committerCody Hiar <codyfh@gmail.com>2017-09-25 11:20:06 -0600
commitcabe50c926ad3ec75208f83433064f3caaf74c33 (patch)
treead567e8c6c0a75f3244219086435a7552ec39007
parent901205f7d0bd7da84c87461aeef051b7a11eadc3 (diff)
Reverting changes
-rw-r--r--Dockerfile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index e49efa0..8cf98a2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -83,11 +83,12 @@ WORKDIR /root/app
RUN infocmp $TERM | sed 's/kbs=^[hH]/kbs=\\177/' > /tmp/$TERM.ti
RUN tic /tmp/$TERM.ti
# Command for the image
+CMD ["/bin/bash"]
+# Add nvim config. Put this last since it changes often
ADD nvim /root/.config/nvim
-RUN curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
# Install neovim Modules
-RUN nvim -c PlugInstall -c quitall
-RUN nvim -c UpdateRemotePlugins -c quitall
+RUN nvim -i NONE -c PlugInstall -c quitall > /dev/null 2>&1
+RUN nvim -i NONE -c UpdateRemotePlugins -c quitall > /dev/null 2>&1
# Add flake8 config, don't trigger a long build process
ADD flake8 /root/.flake8
# Add local vim-options, can override the one inside