docker-bash/Dockerfile

16 lines
397 B
Docker
Raw Normal View History

2019-09-06 09:12:01 +00:00
FROM docker:stable
LABEL Maintainer="Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>"
LABEL ImageName="registry.hottis.de/dockerized/docker-bash"
2019-09-06 09:12:01 +00:00
LABEL AlternativeImageName="wollud1969/docker-bash"
RUN \
2022-02-21 13:14:19 +01:00
apk add --no-cache bash curl git python3 gawk sed py3-pip zip && \
2020-12-02 19:23:15 +01:00
( cd /usr/bin && ln -s python3 python ) && \
pip install xmltodict && \
pip install pyyaml
2019-09-06 09:12:01 +00:00
CMD [ "bash" ]