From cf7000a9f5b91b9fef159f712406cf6457ec38e0 Mon Sep 17 00:00:00 2001 From: Jackson Delahunt Date: Wed, 20 Feb 2019 19:08:50 +1100 Subject: [PATCH] parallel --- Dockerfile | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 277b28d..cf6ed22 100644 --- a/Dockerfile +++ b/Dockerfile @@ -118,15 +118,16 @@ RUN rm -rf /$BASE_USER RUN chown -R $USER:$USER /$USER # Clone dotfiles configuration -RUN gosu $USER vcsh clone git://github.com/sabrehagen/dotfiles-alacritty.git && \ - gosu $USER vcsh clone git://github.com/sabrehagen/dotfiles-alpine.git && \ - gosu $USER vcsh clone git://github.com/sabrehagen/dotfiles-code.git && \ - gosu $USER vcsh clone git://github.com/sabrehagen/dotfiles-musikcube.git && \ - gosu $USER vcsh clone git://github.com/sabrehagen/dotfiles-scripts.git && \ - gosu $USER vcsh clone git://github.com/sabrehagen/dotfiles-ssh.git && \ - gosu $USER vcsh clone git://github.com/sabrehagen/dotfiles-vlc.git && \ - gosu $USER vcsh clone git://github.com/sabrehagen/dotfiles-x11.git && \ - gosu $USER vcsh clone git://github.com/sabrehagen/dotfiles-zsh.git +RUN gosu $USER vcsh clone https://github.com/sabrehagen/dotfiles-alacritty.git & \ + gosu $USER vcsh clone https://github.com/sabrehagen/dotfiles-alpine.git & \ + gosu $USER vcsh clone https://github.com/sabrehagen/dotfiles-code.git & \ + gosu $USER vcsh clone https://github.com/sabrehagen/dotfiles-musikcube.git & \ + gosu $USER vcsh clone https://github.com/sabrehagen/dotfiles-scripts.git & \ + gosu $USER vcsh clone https://github.com/sabrehagen/dotfiles-ssh.git & \ + gosu $USER vcsh clone https://github.com/sabrehagen/dotfiles-vlc.git & \ + gosu $USER vcsh clone https://github.com/sabrehagen/dotfiles-x11.git & \ + gosu $USER vcsh clone https://github.com/sabrehagen/dotfiles-zsh.git & \ + wait # Cache zsh plugins RUN gosu $USER zsh -c "source $HOME/.zshrc"