2019-09-06 09:12:01 +00:00
|
|
|
FROM docker:stable
|
|
|
|
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>"
|
2020-07-17 14:06:57 +02:00
|
|
|
LABEL ImageName="registry.hottis.de/dockerized/docker-bash"
|
2019-09-06 09:12:01 +00:00
|
|
|
LABEL AlternativeImageName="wollud1969/docker-bash"
|
|
|
|
|
|
|
|
|
|
|
|
RUN \
|
2020-10-12 16:55:02 +02:00
|
|
|
apk add --no-cache bash curl git python3 gawk sed && \
|
2020-07-17 14:29:32 +02:00
|
|
|
P=`pwd` && \
|
|
|
|
cd /usr/bin && \
|
|
|
|
ln -s python3 python && \
|
|
|
|
cd $P
|
2019-09-06 09:12:01 +00:00
|
|
|
|
|
|
|
CMD [ "bash" ]
|
|
|
|
|