2023-05-18 00:58:15 +02:00
|
|
|
# Build jbig2enc in a separate stage
|
2023-06-08 21:25:55 +02:00
|
|
|
FROM bellsoft/liberica-openjdk-alpine:17
|
2023-05-18 00:58:15 +02:00
|
|
|
|
|
|
|
# Copy the application JAR file
|
|
|
|
COPY build/libs/*.jar app.jar
|
|
|
|
|
|
|
|
# Expose the application port
|
|
|
|
EXPOSE 8080
|
|
|
|
|
|
|
|
# Set environment variables
|
|
|
|
ENV GROUPS_TO_REMOVE=LibreOffice,CLI
|
|
|
|
|
|
|
|
# Run the application
|
|
|
|
CMD ["java", "-jar", "/app.jar"]
|