Spaces:
No application file
No application file
| FROM python:3.11-slim AS backend | |
| WORKDIR /usr/src/app/backend | |
| COPY requirements.txt . | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| EXPOSE 8000 | |
| CMD ["python", "server.py"] | |