13 lines
258 B
Docker
13 lines
258 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
|
|
|
|
CMD [ "bash" ]
|
|
|