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 \ 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