From 4c502992d241bb8d9e62d7dceb378969a7d21e1e Mon Sep 17 00:00:00 2001 From: Eike Haller <58111764+eksrha@users.noreply.github.com> Date: Wed, 17 May 2023 12:01:23 +0200 Subject: [PATCH 1/2] add golang install to path (#66) --- images/golang/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/images/golang/Dockerfile b/images/golang/Dockerfile index 7f807d5..2b10700 100644 --- a/images/golang/Dockerfile +++ b/images/golang/Dockerfile @@ -24,6 +24,8 @@ RUN chown -R $USERNAME /home/$USERNAME USER $USERNAME +ENV PATH=$PATH:/home/runner/go/bin + # install helm plugins helm push, appr && diff RUN helm plugin install --version 0.10.3 https://github.com/chartmuseum/helm-push.git \ && helm plugin install --version 0.7.0 https://github.com/app-registry/appr-helm-plugin.git \ From 2c1454fc6402b6441d97d6a59c62fcc553540c49 Mon Sep 17 00:00:00 2001 From: Eike Haller <58111764+eksrha@users.noreply.github.com> Date: Thu, 6 Jul 2023 17:06:47 +0200 Subject: [PATCH 2/2] Update Dockerfile (#67) --- images/maven-temurin-17/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/maven-temurin-17/Dockerfile b/images/maven-temurin-17/Dockerfile index 3084c24..a58d114 100644 --- a/images/maven-temurin-17/Dockerfile +++ b/images/maven-temurin-17/Dockerfile @@ -11,9 +11,9 @@ RUN apt-get update \ && apt-get clean # maven version > 3.6 is still not in ubuntu package managemant -ENV MAVEN_VERSION=3.9.2 +ENV MAVEN_VERSION=3.9.3 RUN curl -fsSL https://dlcdn.apache.org/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.tar.gz | tar -xzC /opt/ \ - && ln -s /opt/apache-maven-3.9.0/bin/mvn /usr/bin/mvn + && ln -s /opt/apache-maven-${MAVEN_VERSION}/bin/mvn /usr/bin/mvn # make cacerts for user accessable RUN chmod 666 /usr/lib/jvm/temurin*/lib/security/cacerts