26 lines
676 B
Docker
26 lines
676 B
Docker
# Stage 1: Build the application
|
|
FROM maven:3.9.9-eclipse-temurin-17-alpine AS builder
|
|
|
|
# Set the working directory
|
|
WORKDIR /home/container
|
|
|
|
# Copy the current directory contents into the container at /home/container
|
|
COPY . .
|
|
|
|
# Build the jar
|
|
RUN mvn package -T2C -q -Dmaven.test.skip -DskipTests
|
|
|
|
# Stage 2: Create the final lightweight image
|
|
FROM eclipse-temurin:17.0.12_7-jre-focal
|
|
|
|
# Set the working directory
|
|
WORKDIR /home/container
|
|
|
|
# Copy the built jar file from the builder stage
|
|
COPY --from=builder /home/container/target/API.jar .
|
|
|
|
# We're running in production
|
|
ENV APP_ENV="production"
|
|
|
|
# Run the jar file
|
|
CMD ["java", "-jar", "API.jar", "-Djava.awt.headless=true"] |