Spaces:
Sleeping
Sleeping
| # Use a lightweight Python base image to stay under the 8GB RAM limit | |
| FROM python:3.11-slim | |
| # Create a non-root user for Hugging Face Spaces security compliance | |
| RUN useradd -m -u 1000 user | |
| USER user | |
| ENV PATH="/home/user/.local/bin:$PATH" | |
| # Set the working directory | |
| WORKDIR /app | |
| # Copy the requirements file and install dependencies | |
| COPY --chown=user requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Copy the rest of the environment code | |
| COPY --chown=user . . | |
| # Expose the default port for Hugging Face Spaces | |
| EXPOSE 7860 | |
| # Command to start the OpenEnv API server | |
| CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"] |