Stirling-PDF/Dockerfile-lite

21 lines
455 B
Plaintext
Raw Normal View History

2023-05-16 23:44:53 +02:00
# Build jbig2enc in a separate stage
FROM frooodle/stirling-pdf-base:beta2
# Create scripts folder and copy local scripts
RUN mkdir /scripts
COPY ./scripts/* /scripts/
# Copy the application JAR file
COPY build/libs/*.jar app.jar
# Expose the application port
EXPOSE 8080
# Set environment variables
2023-05-18 00:58:15 +02:00
ENV GROUPS_TO_REMOVE=LibreOffice
2023-05-16 23:44:53 +02:00
# Run the application
RUN chmod +x /scripts/init.sh
ENTRYPOINT ["/scripts/init.sh"]
CMD ["java", "-jar", "/app.jar"]