20 lines
455 B
Text
20 lines
455 B
Text
# 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
|
|
ENV GROUPS_TO_REMOVE=LibreOffice
|
|
|
|
# Run the application
|
|
RUN chmod +x /scripts/init.sh
|
|
ENTRYPOINT ["/scripts/init.sh"]
|
|
CMD ["java", "-jar", "/app.jar"]
|