Spaces:
Running
Running
FROM python:3.11-slim | |
# Set working directory | |
WORKDIR /app | |
# Install dependencies | |
RUN apt-get update && apt-get install -y \ | |
python3-pip \ | |
&& rm -rf /var/lib/apt/lists/* | |
RUN apt-get update && apt-get install -y ffmpeg | |
ENV TRANSFORMERS_CACHE=/app/cache | |
RUN mkdir -p /app/cache && chmod -R 777 /app/cache | |
# Copy the required files | |
COPY requirements.txt requirements.txt | |
COPY app.py app.py | |
# Install Python dependencies | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Expose port for FastAPI | |
EXPOSE 7860 | |
# Run the application | |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] | |