10 lines
		
	
	
		
			266 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			266 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM python:3.9
 | |
| WORKDIR /app
 | |
| 
 | |
| COPY ./requirements.txt /app/requirements.txt
 | |
| RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
 | |
| 
 | |
| COPY ./food_service.py /app
 | |
| COPY ./food_api.py /app
 | |
| 
 | |
| CMD ["uvicorn", "food_api:app", "--host", "0.0.0.0", "--port", "3002"] |