Spaces:
Runtime error
Runtime error
File size: 254 Bytes
e53ff14 2f86829 46e0c4d 2f86829 6fdc4c2 2f86829 4f85ca3 6fdc4c2 2f86829 46e0c4d 4f85ca3 2f86829 6fdc4c2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | FROM python:3.11
WORKDIR /app
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY firebase_admin.json .
CMD ["python", "app.py"] |