burtenshaw's picture
burtenshaw HF Staff
Upload folder using huggingface_hub
3a3bc0e verified
raw
history blame contribute delete
781 Bytes
# Base image
FROM python:3.11-slim
# Set working directory
WORKDIR /app/env
# Install system dependencies
RUN apt-get update && apt-get install -y \
git \
curl \
&& rm -rf /var/lib/apt/lists/*
# Copy environment files
COPY . .
# Install Python dependencies
RUN pip install --no-cache-dir -e .
# Expose port
EXPOSE 8000
# Set environment variables
ENV PYTHONUNBUFFERED=1
ENV ENABLE_WEB_INTERFACE=true
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD curl -f http://localhost:8000/health || exit 1
# Run the server
# Use shell form to allow PORT variable expansion for Hugging Face Spaces
CMD python -m uvicorn wildfire_env.server.app:app --host 0.0.0.0 --port ${PORT:-8000} --proxy-headers --forwarded-allow-ips '*'