File size: 130 Bytes
2fbf000
 
 
 
 
 
1
2
3
4
5
6
7
FROM python:3.10-slim
WORKDIR /code
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]