diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index be1521da..ba964d65 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install maven -ARG MAVEN_VERSION=3.9.4 +ARG MAVEN_VERSION=3.9.5 # Set SHELL flags for RUN commands to allow -e and pipefail # Rationale:https://github.com/hadolint/hadolint/wiki/DL4006