IndiDermaX / Dockerfile
Avishek8136
Switch to Docker SDK to bypass Gradio reverse proxy static asset routing bugs
705efa4
Raw
History Blame Contribute Delete
401 Bytes
FROM python:3.13-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY . .
# Expose the port Hugging Face Spaces expects
EXPOSE 7860
# Run Uvicorn directly, properly handling proxy headers
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--proxy-headers", "--forwarded-allow-ips", "*"]