13 lines
309 B
Docker
13 lines
309 B
Docker
FROM registry.gitlab.com/wolutator/base-build-env:latest
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
|
LABEL ImageName="registry.gitlab.com/wolutator/build-env-java"
|
|
|
|
|
|
RUN \
|
|
apt update && \
|
|
apt install -y openjdk-8-jdk-headless && \
|
|
apt install -y maven && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|