build-env-java/Dockerfile

15 lines
365 B
Docker

FROM registry.hottis.de/dockerized/base-build-env:latest
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
LABEL ImageName="registry.hottis.de/dockerized/build-env-java"
LABEL AlternativeImageName="wollud1969/build-env-java"
RUN \
apt update && \
apt install -y openjdk-8-jdk-headless && \
apt install -y maven && \
rm -rf /var/lib/apt/lists/*