From b9845740d86c2d2b5c02fe58f33817eff01d35c5 Mon Sep 17 00:00:00 2001 From: Ned Bingham Date: Thu, 10 Aug 2023 19:06:13 +0000 Subject: [PATCH] fixing issue with vim install --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dd36d3d..29dfb3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -172,7 +172,8 @@ RUN apt-get -y install sudo # install editors WORKDIR "/" ADD home template -RUN apt-get install -y vim +RUN apt-get update +RUN apt-get install --fix-missing -y vim RUN mkdir -p /template/.vim/pack/plugins/start RUN git clone https://www.github.com/fatih/vim-go.git /template/.vim/pack/plugins/start/vim-go RUN git clone https://github.com/tpope/vim-fugitive /template/.vim/pack/plugins/start/fugitive