mirror of
				https://github.com/Frooodle/Stirling-PDF.git
				synced 2025-11-01 01:21:18 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			405 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			405 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# Build jbig2enc in a separate stage
 | 
						|
FROM frooodle/stirling-pdf-base:latest
 | 
						|
 | 
						|
# Copy the application JAR file
 | 
						|
COPY build/libs/*.jar app.jar
 | 
						|
 | 
						|
# Expose the application port
 | 
						|
EXPOSE 8080
 | 
						|
 | 
						|
# Set environment variables
 | 
						|
ENV APP_HOME_NAME="Stirling PDF"
 | 
						|
#ENV APP_HOME_DESCRIPTION="Personal PDF Website!"
 | 
						|
#ENV APP_NAVBAR_NAME="Stirling PDF"
 | 
						|
 | 
						|
# Run the application
 | 
						|
ENTRYPOINT java -jar /app.jar
 | 
						|
 | 
						|
 | 
						|
 |