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

Update src/docker/alpine-bash.dockerfile

parent 8f31ec80
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -10,6 +10,9 @@ RUN apk add bash sed gawk curl jq git
RUN apk add --no-cache tzdata
ENV TZ=Europe/Berlin

RUN /bin/bash source <(curl -s https://gitlab.bjoernbartels.earth/shellscripts/toolbox/raw/dev/setup.sh)
RUN curl -fsSL https://gitlab.bjoernbartels.earth/shellscripts/toolbox/raw/dev/setup.sh -o ~/toolbox-setup.sh
RUN 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)

CMD [ "/bin/bash" ]