docker-bash/Dockerfile

13 lines
262 B
Docker

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