2019-02-18 07:26:48 +01:00
|
|
|
FROM registry.gitlab.com/wolutator/base-build-env:latest
|
|
|
|
|
2019-03-27 14:22:21 +00:00
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
|
|
|
LABEL ImageName="registry.gitlab.com/wolutator/build-env-java"
|
2019-02-18 07:26:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
RUN \
|
|
|
|
apt update && \
|
2019-02-18 07:32:14 +01:00
|
|
|
apt install -y openjdk-8-jdk-headless && \
|
2019-02-18 07:26:48 +01:00
|
|
|
apt install -y maven && \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|