docker-bash/Dockerfile

13 lines
257 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>"
2020-06-09 09:20:13 +00:00
# LABEL ImageName="registry.hottis.de/docker-bash"
2019-09-06 09:12:01 +00:00
LABEL AlternativeImageName="wollud1969/docker-bash"
RUN \
2020-06-08 14:44:07 +00:00
apk add --no-cache bash curl git
2019-09-06 09:12:01 +00:00
CMD [ "bash" ]