AEGIS-ENV / aegis_env /server /Dockerfile
GSD Bot
feat: apply master fix to HF environment
7a529e5
raw
history blame contribute delete
153 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN pip install --no-cache-dir openenv-core fastapi uvicorn pydantic
COPY . .
CMD ["python", "-m", "aegis_env.server"]