lucifer0455/Fall-Detection-API
0
1FROM python:3.102 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir --upgrade pip7RUN pip install --no-cache-dir -r requirements.txt8 9COPY . .10 11# Hugging Face Spaces utilise TOUJOURS le port 786012EXPOSE 786013 14CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app", "--timeout", "120"]