From ae39278a130bd443f87e946bef0e8bfea8300f15 Mon Sep 17 00:00:00 2001 From: Oleksandr Yatsenko Date: Fri, 11 Sep 2020 09:06:22 +0300 Subject: [PATCH] Upgrade to Open JDK 11. (#56) Specify particular version of docker client's API. --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index af9c540..299e9aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,12 @@ +ARG docker_version=19.03 + FROM folioci/alpine-jre-openjdk11:latest ENV VERTICLE_FILE edge-oai-pmh-fat.jar # Set the location of the verticles ENV VERTICLE_HOME /usr/verticles +ENV DOCKER_API_VERSION=1.39 # Copy your fat jar to the container COPY target/${VERTICLE_FILE} ${VERTICLE_HOME}/${VERTICLE_FILE}