vineyard03's picture
Upload folder using huggingface_hub
9adf324 verified
Raw
History Blame Contribute Delete
422 Bytes
# Use an official Python image
FROM python:3.13
# Set the working directory
WORKDIR /app
# Copy only requirements first (for better caching)
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application code
COPY . .
# Expose the port Gradio runs on
EXPOSE 7860
# Command to run the Gradio app
CMD ["python", "interface.py"]