Files
base-build-env/Dockerfile
2019-04-30 13:23:56 +00:00

16 lines
368 B
Docker

FROM debian:latest
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
LABEL ImageName="registry.gitlab.com/wolutator/base-build-env"
RUN \
apt-get update && \
apt-get install -y make && \
apt-get install -y openssh-client && \
apt-get install -y git && \
apt-get install -y python && \
apt-get install -y curl && \
rm -rf /var/lib/apt/lists/*