| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | FROM ghcr.io/meta-pytorch/openenv-base:latest |
| | |
| | RUN apt-get update && apt-get install -y --no-install-recommends \ |
| | libgl1 \ |
| | libglib2.0-0 \ |
| | && rm -rf /var/lib/apt/lists/* |
| |
|
| | |
| | RUN pip install --upgrade pip setuptools |
| | RUN pip install --no-cache-dir \ |
| | textarena==0.6.1 \ |
| | nltk==3.9.2 \ |
| | uvicorn==0.20.0 |
| |
|
| | |
| | COPY src/core/ /app/src/core/ |
| | COPY src/envs/textarena_env/ /app/src/envs/textarena_env/ |
| |
|
| | |
| | HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ |
| | CMD curl -f http://localhost:8000/health || exit 1 |
| |
|
| | |
| | CMD ["uvicorn", "envs.textarena_env.server.app:app", "--host", "0.0.0.0", "--port", "8000"] |
| | ENV ENABLE_WEB_INTERFACE=true |
| |
|