commit da460bde4165a35b1355024948415d639f902a9d Author: Wolfgang Hottgenroth Date: Wed Sep 30 09:16:29 2020 +0000 initial diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..9e5f3a9 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,4 @@ +include: + - project: dockerized/commons + ref: master + file: gitlab-ci-template.yml diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f5f8f5e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +FROM registry.hottis.de/dockerized/base-build-env:latest + +LABEL Maintainer="Wolfgang Hottgenroth " +LABEL ImageName="registry.hottis.de/dockerized/build-env-java11" +LABEL AlternativeImageName="wollud1969/build-env-java11" + + + +RUN \ + apt update && \ + apt install -y software-properties-common && \ + curl https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public > adoptopenjdk.key && \ + apt-key add adoptopenjdk.key && \ + add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ && \ + apt update && \ + apt install -y adoptopenjdk-11-hotspot && \ + apt install -y maven && \ + rm -rf /var/lib/apt/lists/* +