Commit 11c2b857 authored by Björn Bartels's avatar Björn Bartels 👩🏻
Browse files

Update src/docker/alpine-bash.dockerfile, src/docker/ubuntu-bash.dockerfile files

parent 74438fe2
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -10,9 +10,9 @@ RUN apk add bash sed gawk curl jq git
RUN apk add --no-cache tzdata
ENV TZ=Europe/Berlin

RUN curl -fsSL https://gitlab.bjoernbartels.earth/shellscripts/toolbox/raw/dev/setup.sh -o ~/toolbox-setup.sh
RUN /bin/bash chmod +x ~/toolbox-setup.sh && set -x && ~/toolbox-setup.sh && rm ~/toolbox-setup.sh
#RUN curl -fsSL https://gitlab.bjoernbartels.earth/shellscripts/toolbox/raw/dev/setup.sh -o ~/toolbox-setup.sh
#RUN /bin/bash chmod +x ~/toolbox-setup.sh && set -x && ~/toolbox-setup.sh && rm ~/toolbox-setup.sh

#RUN /bin/bash source <(curl -s https://gitlab.bjoernbartels.earth/shellscripts/toolbox/raw/dev/setup.sh)
RUN /bin/bash -s <(curl -s https://gitlab.bjoernbartels.earth/shellscripts/toolbox/raw/dev/setup.sh)

CMD [ "/bin/bash" ]
+1 −1
Original line number Diff line number Diff line
@@ -12,6 +12,6 @@ RUN apt-get install -y bash sed gawk curl jq git
RUN apt-get install -y tzdata
ENV TZ=Europe/Berlin

RUN /bin/bash source <(curl -s https://gitlab.bjoernbartels.earth/shellscripts/toolbox/raw/dev/setup.sh)
RUN /bin/bash -s <(curl -s https://gitlab.bjoernbartels.earth/shellscripts/toolbox/raw/dev/setup.sh)

CMD [ "/bin/bash" ]