Spaces:
Running
Running
File size: 610 Bytes
48e9676 9792cba 5f6fe2c 9792cba 5f6fe2c 3b048f8 3af511d 5f6fe2c 9792cba 5f6fe2c 3af511d |
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 |
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"]
|