1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-07-05 00:40:12 +02:00
Stirling-PDF/Dockerfile-ultra-lite

15 lines
294 B
Plaintext
Raw Normal View History

2023-05-18 00:58:15 +02:00
# Build jbig2enc in a separate stage
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=CLI
2023-05-18 00:58:15 +02:00
# Run the application
CMD ["java", "-jar", "/app.jar"]