Spaces:
Runtime error
Runtime error
File size: 359 Bytes
47e89f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the environment source
COPY . .
# Set environment variables for HF Spaces / Gradio
ENV PYTHONUNBUFFERED=1
ENV PYTHONPATH=/app
EXPOSE 7860
# Run the Gradio configuration app to interact with/view the environment
CMD ["python", "app.py"]
|