8 lines
		
	
	
		
			206 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			206 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM tiangolo/meinheld-gunicorn-flask:python3.9
 | |
| 
 | |
| COPY ./requirements.txt /app/requirements.txt
 | |
| 
 | |
| RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
 | |
| 
 | |
| COPY ./main.py /app/
 | |
| COPY ./Parser.py /app/ |