From 09066e1e95274a3b73bb7036ccd76f7b6ce48ac2 Mon Sep 17 00:00:00 2001 From: Clement Escoffier Date: Mon, 13 Jan 2020 21:02:00 +0100 Subject: [PATCH] Explicitly set the UBI version to 8.1 in the Dockerfile used for the native executable. --- .../src/main/resources/templates/dockerfile-native.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/platform-descriptor-json/src/main/resources/templates/dockerfile-native.ftl b/devtools/platform-descriptor-json/src/main/resources/templates/dockerfile-native.ftl index 471720f71..68263bfb6 100644 --- a/devtools/platform-descriptor-json/src/main/resources/templates/dockerfile-native.ftl +++ b/devtools/platform-descriptor-json/src/main/resources/templates/dockerfile-native.ftl @@ -14,7 +14,7 @@ # docker run -i --rm -p 8080:8080 quarkus/${project_artifactId} # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.1 WORKDIR /work/ COPY ${build_dir}/*-runner /work/application RUN chmod 775 /work /work/application