2024-09-06 19:08:49 +00:00
|
|
|
FROM openjdk:21-jdk-slim
|
2024-09-06 16:54:26 +00:00
|
|
|
|
|
|
|
# Set the working directory
|
|
|
|
WORKDIR /app
|
|
|
|
|
2024-09-06 19:08:49 +00:00
|
|
|
# Copy the JAR file into the container
|
|
|
|
COPY munera-1.0-SNAPSHOT.jar /app/munera-1.0-SNAPSHOT.jar
|
2024-09-06 16:54:26 +00:00
|
|
|
|
|
|
|
# Expose the port the app runs on
|
|
|
|
EXPOSE 8080
|
|
|
|
|
|
|
|
# Run the JAR file
|
2024-09-06 18:50:29 +00:00
|
|
|
CMD ["java", "-jar", "/app/munera-1.0-SNAPSHOT.jar"]
|