Spaces:
Running
Running
| FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY ./server/requirements.txt /app/requirements.txt | |
| RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt | |
| COPY . /app | |
| ENV PYTHONUNBUFFERED=1 | |
| ENV PORT=7860 | |
| EXPOSE 7860 | |
| CMD ["python", "-m", "server.app"] | |