gpu-scheduler-openenv / Dockerfile
SulmanK's picture
Initial Hugging Face Space deployment
7111c77
Raw
History Blame Contribute Delete
340 Bytes
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"]