mirror of
				https://github.com/dancojocaru2000/foxbank.git
				synced 2025-11-04 05:56:32 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			229 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			229 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.10-slim
 | 
						|
 | 
						|
RUN pip3 install pipenv
 | 
						|
 | 
						|
WORKDIR /app
 | 
						|
 | 
						|
COPY Pipfile Pipfile.lock ./
 | 
						|
RUN pipenv install
 | 
						|
 | 
						|
COPY . .
 | 
						|
 | 
						|
EXPOSE 5000
 | 
						|
CMD [ "pipenv", "run", "gunicorn", "-b", "0.0.0.0:5000", "--access-logfile", "-", "server:app" ] |