Skip to content

Commit

Permalink
ploigos-tool-maven
Browse files Browse the repository at this point in the history
* update to use archive URL so that link doesn't break when new version comes out
* udpate to maven 3.8.6
  • Loading branch information
itewk authored and dwinchell committed Jun 13, 2022
1 parent a7c8e2d commit 50daca4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ploigos-tool-maven/Containerfile.ubi8
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG BASE_IMAGE=quay.io/ploigos/ploigos-tool-java-8:latest.ubi8
ARG MAVEN_VERSION=3.8.5
ARG MAVEN_VERSION=3.8.6

FROM $BASE_IMAGE
ARG PLOIGOS_USER_UID
Expand All @@ -26,7 +26,7 @@ USER root

# install maven
# NOTE: installing from upstream because version shipped in UBI repos is ancient (3.5) as of 7/23/21
RUN curl -L https://downloads.apache.org/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.tar.gz \
RUN curl -L https://archive.apache.org/dist/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.tar.gz \
-o /usr/apache-maven-${MAVEN_VERSION}-bin.tar.gz && \
tar -xvf /usr/apache-maven-${MAVEN_VERSION}-bin.tar.gz -C /usr && \
rm -rf /usr/apache-maven-${MAVEN_VERSION}-bin.tar.gz
Expand Down

0 comments on commit 50daca4

Please sign in to comment.