Stirling-PDF/Dockerfile-ultra-lite

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.6 KiB
Text
Raw Normal View History

# use alpine
2024-02-10 10:29:17 +00:00
FROM alpine:3.19.1
2023-05-17 23:58:15 +01:00
2023-12-18 16:39:26 +00:00
ARG VERSION_TAG
2023-09-04 18:42:22 +01:00
# Set Environment Variables
2023-12-16 10:11:34 +00:00
ENV DOCKER_ENABLE_SECURITY=false \
2023-09-04 18:42:22 +01:00
HOME=/home/stirlingpdfuser \
2023-12-28 17:49:45 +00:00
VERSION_TAG=$VERSION_TAG \
JAVA_TOOL_OPTIONS="$JAVA_TOOL_OPTIONS -XX:MaxRAMPercentage=75" \
PUID=1000 \
PGID=1000 \
UMASK=022
2023-09-04 18:42:22 +01:00
# Copy necessary files
COPY scripts/download-security-jar.sh /scripts/download-security-jar.sh
COPY scripts/init-without-ocr.sh /scripts/init-without-ocr.sh
COPY pipeline /pipeline
COPY build/libs/*.jar app.jar
2023-09-04 18:42:22 +01:00
# Set up necessary directories and permissions
RUN mkdir /configs /logs /customFiles && \
chmod +x /scripts/*.sh && \
apk add --no-cache \
ca-certificates \
tzdata \
tini \
bash \
2023-12-31 17:14:55 +01:00
curl \
su-exec \
2024-03-09 14:03:46 +00:00
shadow \
2024-01-31 20:59:22 +01:00
openjdk17-jre && \
echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/main" | tee -a /etc/apk/repositories && \
echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/community" | tee -a /etc/apk/repositories && \
echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" | tee -a /etc/apk/repositories && \
# User permissions
addgroup -S stirlingpdfgroup && adduser -S stirlingpdfuser -G stirlingpdfgroup && \
chown -R stirlingpdfuser:stirlingpdfgroup $HOME /scripts /configs /customFiles /pipeline && \
chown stirlingpdfuser:stirlingpdfgroup /app.jar
2023-05-17 23:58:15 +01:00
# Set environment variables
2023-09-04 18:42:22 +01:00
ENV ENDPOINTS_GROUPS_TO_REMOVE=CLI
2023-12-16 10:11:34 +00:00
2024-02-10 10:29:17 +00:00
EXPOSE 8080
ENTRYPOINT ["tini", "--", "/scripts/init-without-ocr.sh"]
2023-05-17 23:58:15 +01:00
# Run the application
CMD ["java", "-Dfile.encoding=UTF-8", "-jar", "/app.jar"]