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

38 lines
1.0 KiB
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
2023-09-04 19:42:22 +02:00
# Set Environment Variables
2023-12-16 11:11:34 +01:00
ENV DOCKER_ENABLE_SECURITY=false \
2023-09-04 19:42:22 +02:00
HOME=/home/stirlingpdfuser \
2023-12-16 11:11:34 +01:00
VERSION_TAG=$VERSION_TAG
# PUID=1000 \
# PGID=1000 \
# UMASK=022 \
2023-09-04 19:42:22 +02:00
# Create user and group using Alpine's addgroup and adduser
2023-12-16 11:11:34 +01:00
#RUN addgroup -g $PGID stirlingpdfgroup && \
# adduser -u $PUID -G stirlingpdfgroup -s /bin/sh -D stirlingpdfuser && \
# mkdir -p $HOME && chown stirlingpdfuser:stirlingpdfgroup $HOME
2023-09-04 19:42:22 +02:00
# Set up necessary directories and permissions
2023-12-16 11:11:34 +01:00
#RUN mkdir -p /scripts /configs /customFiles && \
# chown -R stirlingpdfuser:stirlingpdfgroup /scripts /configs /customFiles
RUN mkdir -p /scripts /usr/share/fonts/opentype/noto /configs /customFiles
2023-09-04 19:42:22 +02:00
2023-05-18 00:58:15 +02:00
COPY build/libs/*.jar app.jar
2023-09-04 19:42:22 +02:00
# Set font cache and permissions
2023-12-16 11:11:34 +01:00
#RUN chown stirlingpdfuser:stirlingpdfgroup /app.jar
2023-09-04 19:42:22 +02:00
2023-05-18 00:58:15 +02:00
# Expose the application port
EXPOSE 8080
# Set environment variables
2023-09-04 19:42:22 +02:00
ENV ENDPOINTS_GROUPS_TO_REMOVE=CLI
2023-12-16 11:11:34 +01:00
ENTRYPOINT ["/scripts/init.sh"]
2023-05-18 00:58:15 +02:00
# Run the application
CMD ["java", "-jar", "/app.jar"]