13 lines
293 B
Docker
13 lines
293 B
Docker
FROM registry.gitlab.com/wolutator/base-build-env
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>"
|
|
LABEL ImageName="registry.gitlab.com/wolutator/cobol-docker"
|
|
LABEL AlternativeImageName="wollud1969/cobol-docker"
|
|
|
|
RUN \
|
|
apt update && \
|
|
apt install -y gnucobol
|
|
|
|
|
|
|