File size: 98 Bytes
ba58dcd
 
 
 
 
1
2
3
4
5
FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "app.py"]