File size: 141 Bytes
a6aa453
 
 
 
 
 
9a1c8ed
1
2
3
4
5
6
7
FROM python:3.9
WORKDIR /code
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "-u", "app.py"]