1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-07-05 00:40:12 +02:00
Stirling-PDF/Dockerfile-ultralite
Anthony Stirling 320f56e473 lots of stuff
2023-05-17 23:58:15 +01:00

15 lines
290 B
Plaintext

# Build jbig2enc in a separate stage
FROM openjdk:17-jdk-slim
# 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"]