File size: 507 Bytes
89decde | 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 | FROM python:3.10-slim
# Instalar dependencias del sistema
RUN apt-get update && apt-get install -y \
ffmpeg \
libsndfile1 \
&& rm -rf /var/lib/apt/lists/*
# Crear directorio de trabajo
WORKDIR /app
# Copiar archivos de requisitos
COPY requirements.txt .
COPY packages.txt .
# Instalar dependencias de Python
RUN pip install --no-cache-dir -r requirements.txt
# Copiar aplicación
COPY app.py .
COPY README.md .
# Exponer puerto
EXPOSE 7860
# Comando para ejecutar
CMD ["python", "app.py"] |