16 lines
326 B
Docker
16 lines
326 B
Docker
FROM registry.hottis.de/dockerized/base-build-env:1.0.0
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
|
LABEL ImageName="registry.hottis.de/dockerized/build-env-c"
|
|
LABEL AlternativeImageName="wollud1969/build-env-c"
|
|
|
|
|
|
RUN \
|
|
apt-get update && \
|
|
apt-get install -y gcc g++ && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|