From 1ca7798b0a3be07e7d03f8099a810452f34ec0c6 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Thu, 25 Jul 2024 23:17:16 +0200 Subject: [PATCH] sort dotfiles layer --- Dockerfile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1445174..8c09406 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,10 +33,15 @@ RUN apt-get update \ acl \ ripgrep \ pwgen \ - keychain \ bc \ jq \ - && rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/* requirements.txt requirements.yaml\ + && rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/* requirements.txt requirements.yaml \ && apt-get clean -RUN wget --quiet https://git.mgrote.net/mg/dotfiles/raw/branch/master/scripts/setup_minimal.sh && bash ./setup_minimal.sh +# dotfiles, see: https://git.mgrote.net/mg/dotfiles/raw/branch/master/scripts/setup_minimal.sh +RUN git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim \ + && git clone https://git.mgrote.net/mg/dotfiles ~/dotfiles \ + && ln -s ~/dotfiles/.tmux.conf ~/.tmux.conf \ + && ln -s ~/dotfiles/.vimrc ~/.vimrc \ + && ln -s ~/dotfiles/vim/spell/ ~/.vim/ \ + && vim +PluginInstall +qall