Spaces:
Sleeping
Sleeping
FROM python:3.9-alpine | |
WORKDIR /app | |
COPY ./requirements.txt /app/requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
COPY . /app | |
CMD ["gunicorn", "-b", "0.0.0.0:7860", "web_interface:app"] |