12 lines
251 B
Docker
12 lines
251 B
Docker
|
FROM registry.gitlab.com/wolutator/base-build-env:latest
|
||
|
|
||
|
MAINTAINER Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>
|
||
|
|
||
|
|
||
|
RUN \
|
||
|
apt update && \
|
||
|
apt install -y openjdk-8-headless && \
|
||
|
apt install -y maven && \
|
||
|
rm -rf /var/lib/apt/lists/*
|
||
|
|