Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(maven): bump maven to 3.9.5 #91

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ COPY --chown=${USER} ./web .
USER root
RUN npm ci
RUN npm test -- --run
RUN npm run build
RUN npm run build

FROM registry.access.redhat.com/ubi9/ubi:9.1.0-1782 AS build

ENV \
Expand All @@ -26,8 +26,8 @@ WORKDIR ${APP_ROOT}

USER root

ENV MAVEN_VERSION 3.9.3
ENV MAVEN_DOWNLOAD_SUM 400fc5b6d000c158d5ee7937543faa06b6bda8408caa2444a9c947c21472fde0f0b64ac452b8cec8855d528c0335522ed5b6c8f77085811c7e29e1bedbb5daa2
ENV MAVEN_VERSION 3.9.5
ENV MAVEN_DOWNLOAD_SUM 4810523ba025104106567d8a15a8aa19db35068c8c8be19e30b219a1d7e83bcab96124bf86dc424b1cd3c5edba25d69ec0b31751c136f88975d15406cab3842b
ENV MAVEN_DIR=/opt/maven

RUN INSTALL_PKGS="java-17-openjdk java-17-openjdk-devel" && \
Expand All @@ -46,7 +46,7 @@ RUN curl -fsSL https://dlcdn.apache.org/maven/maven-3/${MAVEN_VERSION}/binaries/
rm ${MAVEN_DIR}/conf/settings.xml && \
#cp /opt/configurations/settings.xml ${MAVEN_DIR}/conf/settings.xml && \
rm -Rf apache-maven-${MAVEN_VERSION}


ENV PATH ${MAVEN_DIR}/bin:$PATH

Expand All @@ -70,7 +70,7 @@ RUN curl -fsSL https://github.com/graalvm/mandrel/releases/download/mandrel-${MA
tar xvfz mandrel-${JAVA_VERSION}-linux-amd64-${MANDREL_VERSION}.tar.gz && \
rm mandrel-${JAVA_VERSION}-linux-amd64-${MANDREL_VERSION}.tar.gz && \
mv mandrel-${JAVA_VERSION}-${MANDREL_VERSION} mandrel && \
rm -Rf mandrel/demo mandrel/man
rm -Rf mandrel/demo mandrel/man

ENV JAVA_HOME=${APP_ROOT}/mandrel
ENV GRAALVM_HOME=${APP_ROOT}/mandrel
Expand Down
Loading