2023-05-18 00:58:15 +02:00
|
|
|
# Build jbig2enc in a separate stage
|
2023-06-08 21:25:55 +02:00
|
|
|
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
|
|
|
|
ENV PUID=1000 \
|
|
|
|
PGID=1000 \
|
|
|
|
UMASK=022 \
|
|
|
|
DOCKER_ENABLE_SECURITY=false \
|
|
|
|
HOME=/home/stirlingpdfuser \
|
|
|
|
VERSION_TAG=$VERSION_TAG
|
|
|
|
|
|
|
|
# Create user and group using Alpine's addgroup and adduser
|
|
|
|
RUN addgroup -g $PGID stirlingpdfgroup && \
|
|
|
|
adduser -u $PUID -G stirlingpdfgroup -s /bin/sh -D stirlingpdfuser && \
|
|
|
|
mkdir -p $HOME && chown stirlingpdfuser:stirlingpdfgroup $HOME
|
|
|
|
|
|
|
|
# Set up necessary directories and permissions
|
|
|
|
RUN mkdir -p /scripts /configs /customFiles && \
|
|
|
|
chown -R stirlingpdfuser:stirlingpdfgroup /scripts /configs /customFiles
|
|
|
|
|
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
|
|
|
|
RUN chown stirlingpdfuser:stirlingpdfgroup /app.jar
|
|
|
|
|
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-08-27 20:58:20 +02:00
|
|
|
ENV DOCKER_ENABLE_SECURITY=false
|
2023-05-18 00:58:15 +02:00
|
|
|
|
|
|
|
# Run the application
|
|
|
|
CMD ["java", "-jar", "/app.jar"]
|