17 lines
358 B
Docker
17 lines
358 B
Docker
FROM docker:stable
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>"
|
|
LABEL ImageName="registry.hottis.de/dockerized/docker-bash"
|
|
LABEL AlternativeImageName="wollud1969/docker-bash"
|
|
|
|
|
|
RUN \
|
|
apk add --no-cache bash curl git python3 gawk sed && \
|
|
P=`pwd` && \
|
|
cd /usr/bin && \
|
|
ln -s python3 python && \
|
|
cd $P
|
|
|
|
CMD [ "bash" ]
|
|
|