2024-06-24 14:46:35 +00:00
|
|
|
# Stage 1: Build the application
|
2024-07-07 00:42:57 +00:00
|
|
|
FROM maven:3.9.8-eclipse-temurin-17-alpine AS builder
|
2024-06-24 14:46:35 +00:00
|
|
|
|
|
|
|
# Set the working directory
|
|
|
|
WORKDIR /home/container
|
|
|
|
|
2024-06-24 14:47:12 +00:00
|
|
|
# Copy the source code
|
|
|
|
COPY . .
|
2024-06-24 14:46:35 +00:00
|
|
|
|
|
|
|
# Build the jar
|
|
|
|
RUN mvn package -q -Dmaven.test.skip -DskipTests -T2C
|
|
|
|
|
|
|
|
# Stage 2: Create the final lightweight image
|
2024-07-23 01:01:16 +00:00
|
|
|
FROM eclipse-temurin:17.0.12_7-jre-focal
|
2024-06-24 14:46:35 +00:00
|
|
|
|
|
|
|
# Set the working directory
|
|
|
|
WORKDIR /home/container
|
|
|
|
|
|
|
|
# Copy the built jar file from the builder stage
|
|
|
|
COPY --from=builder /home/container/target/Bat.jar .
|
|
|
|
|
2024-06-28 02:05:36 +00:00
|
|
|
# Export the port
|
|
|
|
ENV PORT=8080
|
|
|
|
EXPOSE $PORT
|
|
|
|
|
2024-06-24 14:46:35 +00:00
|
|
|
# Run the jar file
|
|
|
|
CMD java -jar Bat.jar -Djava.awt.headless=true
|