File size: 173 Bytes
6e7818d
44a54d3
 
25cae95
44a54d3
2e35480
44a54d3
1
2
3
4
5
6
7
FROM python:3.12-rc-slim-buster
WORKDIR /app
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app/
EXPOSE 7860
CMD ["python", "app.py"]