File size: 115 Bytes
cd7f5d0
 
 
 
 
 
1
2
3
4
5
6
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 5006
CMD ["python", "app.py"]