STT / Dockerfile
github-actions[bot]
Auto-deploy from GitHub: cb4e461ea60a5c89f6f2444f551d1fedeb837b83
8127898
raw
history blame contribute delete
597 Bytes
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
ffmpeg \
git \
curl \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first for better caching
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY . .
# Create necessary directories
RUN mkdir -p uploads temp_dir
# Expose port
EXPOSE 7860
# Run only the Flask app (worker starts automatically on first upload)
CMD ["python", "app.py"]