Spaces:
Running
Running
| FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY pyproject.toml README.md openenv.yaml ./ | |
| COPY env ./env | |
| COPY server ./server | |
| COPY training ./training | |
| COPY green_agent ./green_agent | |
| COPY models.py client.py ./ | |
| RUN pip install --no-cache-dir . | |
| EXPOSE 8000 | |
| CMD ["python", "-m", "uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "8000"] | |