mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-04 15:00:14 +01:00
docker file testing
This commit is contained in:
parent
1d60433fcf
commit
fb66717b43
23
Dockerfile
23
Dockerfile
@ -1,10 +1,14 @@
|
|||||||
# Build jbig2enc in a separate stage
|
# Build jbig2enc in a separate stage
|
||||||
FROM frooodle/stirling-pdf-base:beta4
|
FROM frooodle/stirling-pdf-base:beta4
|
||||||
|
|
||||||
ARG ENABLE_SECURITY_DEFAULT=false
|
ARG VERSION_TAG
|
||||||
ENV ENABLE_SECURITY=$ENABLE_SECURITY_DEFAULT
|
ENV VERSION_TAG=$VERSION_TAG
|
||||||
|
|
||||||
|
ENV ENABLE_SECURITY=false
|
||||||
|
|
||||||
|
ARG ALPHA=false
|
||||||
|
ENV ALPHA=$ALPHA
|
||||||
|
|
||||||
ARG VERSION_TAG=v0.12.2
|
|
||||||
|
|
||||||
# Create scripts folder and copy local scripts
|
# Create scripts folder and copy local scripts
|
||||||
RUN mkdir /scripts
|
RUN mkdir /scripts
|
||||||
@ -17,12 +21,17 @@ COPY src/main/resources/static/fonts/*.otf /usr/share/fonts/opentype/noto/
|
|||||||
RUN fc-cache -f -v
|
RUN fc-cache -f -v
|
||||||
|
|
||||||
# Depending on the ENABLE_SECURITY flag, download the correct JAR
|
# Depending on the ENABLE_SECURITY flag, download the correct JAR
|
||||||
RUN if [ "$ENABLE_SECURITY" = "true" ]; then \
|
COPY build/libs/*.jar app-temp.jar
|
||||||
wget -O app.jar https://github.com/Frooodle/Stirling-PDF/releases/download/$VERSION_TAG/Stirling-PDF-with-login-$VERSION_TAG.jar; \
|
RUN if [ "$ALPHA" = "true" ]; then \
|
||||||
|
mv app-temp.jar app.jar; \
|
||||||
|
elif [ "$ENABLE_SECURITY" = "true" ]; then \
|
||||||
|
wget -O app.jar https://github.com/Frooodle/Stirling-PDF/releases/download/$VERSION_TAG/Stirling-PDF-with-login-$VERSION_TAG.jar; \
|
||||||
|
rm -f app-temp.jar; \
|
||||||
else \
|
else \
|
||||||
wget -O app.jar https://github.com/Frooodle/Stirling-PDF/releases/download/$VERSION_TAG/Stirling-PDF-$VERSION_TAG.jar; \
|
wget -O app.jar https://github.com/Frooodle/Stirling-PDF/releases/download/$VERSION_TAG/Stirling-PDF-$VERSION_TAG.jar; \
|
||||||
|
rm -f app-temp.jar; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Expose the application port
|
# Expose the application port
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
|
@ -13,11 +13,14 @@ RUN apt-get update && \
|
|||||||
# Copy the application JAR file
|
# Copy the application JAR file
|
||||||
COPY build/libs/*.jar app.jar
|
COPY build/libs/*.jar app.jar
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Expose the application port
|
# Expose the application port
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
# Set environment variables
|
# Set environment variables
|
||||||
ENV GROUPS_TO_REMOVE=Python,OpenCV,OCRmyPDF
|
ENV GROUPS_TO_REMOVE=Python,OpenCV,OCRmyPDF
|
||||||
|
ENV ENABLE_SECURITY=false
|
||||||
|
|
||||||
# Run the application
|
# Run the application
|
||||||
CMD ["java", "-jar", "/app.jar"]
|
CMD ["java", "-jar", "/app.jar"]
|
||||||
|
@ -7,8 +7,11 @@ COPY build/libs/*.jar app.jar
|
|||||||
# Expose the application port
|
# Expose the application port
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Set environment variables
|
# Set environment variables
|
||||||
ENV GROUPS_TO_REMOVE=CLI
|
ENV GROUPS_TO_REMOVE=CLI
|
||||||
|
ENV ENABLE_SECURITY=false
|
||||||
|
|
||||||
# Run the application
|
# Run the application
|
||||||
CMD ["java", "-jar", "/app.jar"]
|
CMD ["java", "-jar", "/app.jar"]
|
||||||
|
Loading…
Reference in New Issue
Block a user