2019-02-18 07:26:48 +01:00
|
|
|
FROM registry.gitlab.com/wolutator/base-build-env:latest
|
|
|
|
|
|
|
|
MAINTAINER Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>
|
|
|
|
|
|
|
|
|
|
|
|
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/*
|
|
|
|
|