mirror of
				https://github.com/Frooodle/Stirling-PDF.git
				synced 2025-11-01 01:21:18 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
# use alpine
 | 
						|
FROM alpine:3.21.0@sha256:21dc6063fd678b478f57c0e13f47560d0ea4eeba26dfc947b2a4f81f686b9f45
 | 
						|
 | 
						|
ARG VERSION_TAG
 | 
						|
 | 
						|
# Set Environment Variables
 | 
						|
ENV DOCKER_ENABLE_SECURITY=false \
 | 
						|
    HOME=/home/stirlingpdfuser \
 | 
						|
    VERSION_TAG=$VERSION_TAG \
 | 
						|
    JAVA_TOOL_OPTIONS="$JAVA_TOOL_OPTIONS -XX:MaxRAMPercentage=75" \
 | 
						|
    PUID=1000 \
 | 
						|
    PGID=1000 \
 | 
						|
    UMASK=022
 | 
						|
 | 
						|
# 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 scripts/installFonts.sh /scripts/installFonts.sh
 | 
						|
COPY pipeline /pipeline
 | 
						|
COPY build/libs/*.jar app.jar
 | 
						|
 | 
						|
# Set up necessary directories and permissions
 | 
						|
RUN 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 && \
 | 
						|
    apk upgrade --no-cache -a && \
 | 
						|
    apk add --no-cache \
 | 
						|
        ca-certificates \
 | 
						|
        tzdata \
 | 
						|
        tini \
 | 
						|
        bash \
 | 
						|
        curl \
 | 
						|
        shadow \
 | 
						|
        su-exec \
 | 
						|
        openjdk21-jre && \
 | 
						|
    # User permissions
 | 
						|
    mkdir -p /configs /logs /customFiles /usr/share/fonts/opentype/noto && \
 | 
						|
    chmod +x /scripts/*.sh && \
 | 
						|
    addgroup -S stirlingpdfgroup && adduser -S stirlingpdfuser -G stirlingpdfgroup && \
 | 
						|
    chown -R stirlingpdfuser:stirlingpdfgroup $HOME /scripts  /configs /customFiles /pipeline && \
 | 
						|
    chown stirlingpdfuser:stirlingpdfgroup /app.jar
 | 
						|
 | 
						|
# Set environment variables
 | 
						|
ENV ENDPOINTS_GROUPS_TO_REMOVE=CLI
 | 
						|
 | 
						|
EXPOSE 8080/tcp
 | 
						|
 | 
						|
# Run the application
 | 
						|
ENTRYPOINT ["tini", "--", "/scripts/init-without-ocr.sh"]
 | 
						|
CMD ["java", "-Dfile.encoding=UTF-8", "-jar", "/app.jar"]
 |