Spaces:
Sleeping
Sleeping
File size: 521 Bytes
7c2b60c 114bbcb 7c2b60c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
FROM python:3.10-slim
# Install system dependencies
RUN apt-get update && apt-get install -y \
poppler-utils \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
# Set environment variables for HF Spaces
ENV GRADIO_SERVER_NAME=0.0.0.0
ENV GRADIO_SERVER_PORT=7860
# Install Python packages
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
# Copy app code
COPY . /app
WORKDIR /app
# Run your Gradio app (change as needed)
CMD ["python", "app.py"]
|