Mirror of GitHub source: OpenEnv-compliant LeniencyBench environment + training scripts
6b4f87f verified | FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| ENV PYTHONPATH=/app | |
| EXPOSE 8000 | |
| CMD ["uvicorn", "email_env.server.app:app", "--host", "0.0.0.0", "--port", "8000"] | |