VoiceToWrite / Dockerfile
Seicas's picture
Update Dockerfile
974527e verified
raw
history blame
431 Bytes
FROM python:3.10-slim
WORKDIR /code
# Sistem bağımlılıklarını yükle
RUN apt-get update && apt-get install -y \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
# Python bağımlılıklarını kopyala ve yükle
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Uygulama dosyalarını kopyala
COPY . .
# Hugging Face Spaces için port
EXPOSE 7860
# Uygulamayı başlat
CMD ["python", "app.py"]