Spaces:
Runtime error
Runtime error
File size: 153 Bytes
ab65ac6 | 1 2 3 4 5 | 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"] |