From 5a7eb60706a068370c05eedb2bb54e89f769740d Mon Sep 17 00:00:00 2001 From: Tony Chemit <dev@tchemit.fr> Date: Mon, 24 Feb 2025 12:22:42 +0100 Subject: [PATCH] Use none alpine image seems to be the only solution :( --- base-11/Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/base-11/Dockerfile b/base-11/Dockerfile index 8ae0e90..c4b3528 100755 --- a/base-11/Dockerfile +++ b/base-11/Dockerfile @@ -1,4 +1,4 @@ -FROM maven:3.9.9-eclipse-temurin-11-alpine +FROM maven:3.9.9-eclipse-temurin-11 MAINTAINER Tony Chemit <dev@tchemit.fr> @@ -6,7 +6,5 @@ ENV LANG en_US.UTF-8 COPY home /root/ -RUN apk update && apk add git mingw-w64-binutils RUN chmod 600 -R /root/.ssh ; chmod 600 -R /root/.gnupg -RUN (ln -s ~/.m2/settings-security.xml ~/.settings-security.xml) -RUN wget -q -O - https://gitlab.com/ultreiaio-infra/scripts/raw/master/install.sh | bash \ No newline at end of file +RUN (ln -s ~/.m2/settings-security.xml ~/.settings-security.xml) \ No newline at end of file -- GitLab