30 lines
1.5 KiB
Docker
30 lines
1.5 KiB
Docker
####################################### Build stage #######################################
|
|
FROM maven:3.9-eclipse-temurin-21-alpine
|
|
|
|
ARG MAVEN_ACCOUNT_USR
|
|
ARG MAVEN_ACCOUNT_PSW
|
|
ARG REVISION
|
|
ARG PROFILE
|
|
ARG ORACLE_URL
|
|
ARG ORACLE_TOKEN
|
|
ENV server_username=$MAVEN_ACCOUNT_USR
|
|
ENV server_password=$MAVEN_ACCOUNT_PSW
|
|
ARG CITE_MAVEN_REPO_URL
|
|
|
|
COPY pom.xml /build/
|
|
COPY notification /build/notification/
|
|
COPY notification-web /build/notification-web/
|
|
COPY settings.xml /root/.m2/settings.xml
|
|
RUN rm -f /build/notification-web/src/main/resources/config/app.env
|
|
RUN rm -f /build/notification-web/src/main/resources/config/*-devel.yml
|
|
RUN rm -f /build/notification-web/src/main/resources/logging/*.xml
|
|
RUN rm -f /build/notification-web/src/main/resources/certificates/*.crt
|
|
|
|
COPY oracle.local.cite.gr.crt $JAVA_HOME/conf/security
|
|
RUN cd "$JAVA_HOME"/conf/security && keytool -cacerts -storepass changeit -noprompt -trustcacerts -importcert -alias oraclecert -file oracle.local.cite.gr.crt
|
|
|
|
WORKDIR /build/
|
|
RUN mvn -Drevision=${REVISION} -DciteMavenRepoUrl=${CITE_MAVEN_REPO_URL} -P${PROFILE} clean
|
|
RUN mvn -Drevision=${REVISION} -DciteMavenRepoUrl=${CITE_MAVEN_REPO_URL} -P${PROFILE} install
|
|
RUN mvn -Drevision=${REVISION} -DciteMavenRepoUrl=${CITE_MAVEN_REPO_URL} -P${PROFILE} package
|
|
RUN mvn sonar:sonar -Drevision=${REVISION} -DciteMavenRepoUrl=${CITE_MAVEN_REPO_URL} -P${PROFILE} -Dsonar.projectKey=OpenDMP:notification-api -Dsonar.login=${ORACLE_TOKEN} -Dsonar.host.url=${ORACLE_URL} -Dsonar.projectName='OpenDMP Notification API' |