37 lines
1.4 KiB
Docker
37 lines
1.4 KiB
Docker
####################################### Build stage #######################################
|
|
FROM maven:3.9-eclipse-temurin-21-alpine AS build-stage
|
|
|
|
ARG MAVEN_ACCOUNT_USR
|
|
ARG MAVEN_ACCOUNT_PSW
|
|
ARG REVISION
|
|
ARG PROFILE
|
|
ARG DEV_PROFILE_URL
|
|
ENV server_username=$MAVEN_ACCOUNT_USR
|
|
ENV server_password=$MAVEN_ACCOUNT_PSW
|
|
|
|
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/*-dev.yml
|
|
RUN rm -f /build/notification-web/src/main/resources/logging/*.xml
|
|
RUN rm -f /build/notification-web/src/main/resources/certificates/*.crt
|
|
|
|
WORKDIR /build/
|
|
|
|
RUN mvn -Drevision=${REVISION} -DdevProfileUrl=${DEV_PROFILE_URL} -P${PROFILE} dependency:go-offline
|
|
# Build project
|
|
RUN mvn -Drevision=${REVISION} -DdevProfileUrl=${DEV_PROFILE_URL} -P${PROFILE} clean package
|
|
|
|
######################################## Run Stage ########################################
|
|
FROM eclipse-temurin:21-jre-ubi9-minimal
|
|
|
|
ARG PROFILE
|
|
ARG REVISION
|
|
ENV SERVER_PORT=8080
|
|
EXPOSE ${SERVER_PORT}
|
|
|
|
COPY --from=build-stage /build/notification-web/target/notification-web-${REVISION}.jar /app/notification-web.jar
|
|
|
|
ENTRYPOINT ["java","-Dspring.config.additional-location=file:/config/","-Dspring.profiles.active=${PROFILE}","-Djava.security.egd=file:/dev/./urandom","-jar","/app/notification-web.jar"] |