Spaces:
Sleeping
Sleeping
FROM python:3.10.13 | |
WORKDIR /app | |
COPY requirements.txt requirements.txt | |
RUN pip install -r requirements.txt | |
COPY . . | |
ENV GR_SERVER_NAME=0.0.0.0 | |
EXPOSE 7860 | |
CMD ["python", "app.py"] | |