File size: 135 Bytes
b9c7500
 
 
 
 
589edae
b9c7500
1
2
3
4
5
6
7
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]