docker-bash/Dockerfile

13 lines
257 B
Docker

FROM docker:stable
LABEL Maintainer="Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>"
# LABEL ImageName="registry.hottis.de/docker-bash"
LABEL AlternativeImageName="wollud1969/docker-bash"
RUN \
apk add --no-cache bash curl git
CMD [ "bash" ]