Compare commits

..

No commits in common. "master" and "1.0.0" have entirely different histories.

2 changed files with 6 additions and 5 deletions

View File

@ -6,10 +6,11 @@ LABEL AlternativeImageName="wollud1969/docker-bash"
RUN \
apk add --no-cache bash curl git python3 gawk sed py3-pip zip && \
( cd /usr/bin && ln -s python3 python ) && \
pip install xmltodict && \
pip install pyyaml
apk add --no-cache bash curl git python3 gawk sed && \
P=`pwd` && \
cd /usr/bin && \
ln -s python3 python && \
cd $P
CMD [ "bash" ]

View File

@ -4,7 +4,7 @@ This is a Docker image directly derived from the Docker image `docker`, which is
I use it regularly within Gitlab CI runners. Most recently I was wondering why a specific bash feature (variable indirection) wasn't available in a CI script. The reason was simple: the Docker `docker` image doesn't contain `bash` at all.
This image now is derived from the Docker `docker` image and just adds the bash, sed, gawk, curl, git and python3, pip and the Python modules xmltodict and pyyaml.
This image now is derived from the Docker `docker` image and just adds the bash, sed, gawk, curl, git and python.
I would say: Use it the same way as the original image, you just have the additional stuff now.