fixing issue with vim install

This commit is contained in:
Edward Arthur Bingham 2023-08-10 19:06:13 +00:00
parent 356bbb5f46
commit b9845740d8

View File

@ -172,7 +172,8 @@ RUN apt-get -y install sudo
# install editors # install editors
WORKDIR "/" WORKDIR "/"
ADD home template 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 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://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 RUN git clone https://github.com/tpope/vim-fugitive /template/.vim/pack/plugins/start/fugitive