Skip to content

Commit

Permalink
[Misc] Workaround certificate issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vmassol committed Feb 12, 2024
1 parent a0bbc16 commit a9c6b79
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ RUN chmod 0600 .vnc/passwd
# Enterprise remote cache (https://ge.xwiki.org), as it'll only be triggered if the Maven version is the same on the
# CI and locally (note: bugfix versions are not taken into account).
ENV MAVEN_VERSION 3.9.6
RUN wget https://archive.apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz && \
# TODO: Remove --no-check-certificat when the certificate for archive.apache.org is good again (it's currently expired)
RUN wget --no-check-certificate https://archive.apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz && \
tar -xvzf apache-maven-$MAVEN_VERSION-bin.tar.gz && \
rm apache-maven-$MAVEN_VERSION-bin.tar.gz

Expand Down

0 comments on commit a9c6b79

Please sign in to comment.