From 9e879f9a67c605caa730a3cab521e507407e59a0 Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Mon, 9 Nov 2020 22:28:37 +0900 Subject: [PATCH 1/2] Use latest Fisher --- ubuntu/18.04/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ubuntu/18.04/Dockerfile b/ubuntu/18.04/Dockerfile index 00ef1bd..0748090 100644 --- a/ubuntu/18.04/Dockerfile +++ b/ubuntu/18.04/Dockerfile @@ -24,9 +24,10 @@ RUN useradd -m box -s /usr/bin/fish \ && echo "box ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/box # Install fisher package manager and configure the Powerline-style bobthefish theme -RUN gosu box curl -Lo /home/box/.config/fish/functions/fisher.fish --create-dirs https://git.io/fisher \ - && gosu box fish -c "fisher add oh-my-fish/theme-bobthefish" +RUN gosu box fish -c "curl -sL git.io/fisher | source && fisher install jorgebucaran/fisher oh-my-fish/theme-bobthefish" COPY --chown=box:box config.fish /home/box/.config/fish/ ENV SHELL /usr/bin/fish CMD ["/usr/bin/fish", "-l"] + + From cd7e8aec41d05bb1a28dc7075a31241935269d4f Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Mon, 9 Nov 2020 22:28:54 +0900 Subject: [PATCH 2/2] Remove extra newlines --- ubuntu/18.04/Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/ubuntu/18.04/Dockerfile b/ubuntu/18.04/Dockerfile index 0748090..d058162 100644 --- a/ubuntu/18.04/Dockerfile +++ b/ubuntu/18.04/Dockerfile @@ -29,5 +29,3 @@ COPY --chown=box:box config.fish /home/box/.config/fish/ ENV SHELL /usr/bin/fish CMD ["/usr/bin/fish", "-l"] - -