Spaces:
Running
Running
| # Copyright (c) Meta Platforms, Inc. and affiliates. | |
| # All rights reserved. | |
| # | |
| # This source code is licensed under the BSD-style license found in the | |
| # LICENSE file in the root directory of this source tree. | |
| # Use the standard openenv base image | |
| # Built from: docker build -t openenv-base:latest -f src/openenv/core/containers/images/Dockerfile . | |
| # In GitHub Actions, this is overridden to use the GHCR base image | |
| ARG BASE_IMAGE=openenv-base:latest | |
| FROM ${BASE_IMAGE} | |
| # Install dependencies and run setup | |
| COPY envs/chat_env/server/requirements.txt /tmp/requirements.txt | |
| COPY envs/chat_env/server/install_deps.sh /tmp/install_deps.sh | |
| RUN chmod +x /tmp/install_deps.sh && \ | |
| /tmp/install_deps.sh && \ | |
| rm /tmp/install_deps.sh /tmp/requirements.txt | |
| # Set environment variables | |
| ENV HF_HOME=/.cache | |
| ENV TRANSFORMERS_CACHE=/.cache | |
| # Environment variables that can be overridden at runtime | |
| ENV TOKENIZER_NAME=gpt2 | |
| ENV SYSTEM_PROMPT="You are a helpful AI assistant." | |
| ENV ENABLE_WEB_INTERFACE=false | |
| # Copy only what's needed for this environment | |
| COPY src/core/ /app/src/core/ | |
| COPY envs/chat_env/ /app/envs/chat_env/ | |
| # Copy README for web interface documentation | |
| COPY envs/chat_env/README.md /app/README.md | |
| # Health check | |
| HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ | |
| CMD curl -f http://localhost:8000/health || exit 1 | |
| # Run the FastAPI server | |
| CMD ["uvicorn", "envs.chat_env.server.app:app", "--host", "0.0.0.0", "--port", "8000"] | |