mirror of
				https://github.com/kevinveenbirkenbach/homepage.veen.world.git
				synced 2025-11-04 01:18:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			273 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			273 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# Base image for Python
 | 
						|
FROM python:slim
 | 
						|
 | 
						|
# Set the working directory
 | 
						|
WORKDIR /app
 | 
						|
 | 
						|
# Copy and install dependencies
 | 
						|
COPY app/requirements.txt requirements.txt
 | 
						|
RUN pip install --no-cache-dir -r requirements.txt
 | 
						|
 | 
						|
# Copy application code
 | 
						|
COPY app/ .
 | 
						|
 | 
						|
CMD ["python", "app.py"]
 |