Spaces:
Paused
Paused
File size: 658 Bytes
737f44f edbace4 737f44f edbace4 737f44f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | FROM python:3.10
WORKDIR /home/user/app
# Install system dependencies (cached layer)
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
# Copy only requirements first (cached if unchanged)
COPY requirements.txt .
# Install Python dependencies (cached layer)
RUN pip install --no-cache-dir -r requirements.txt
# Copy setup files needed for package install
COPY setup.py pyproject.toml ./
# Copy source code
COPY src ./src
# Install the package in editable mode
RUN pip install --no-cache-dir -e .
# Copy the rest of the application
COPY . .
# Expose Gradio port
EXPOSE 7860
# Run the application
CMD ["python", "app.py"]
|