CoolFace
Apppublic

BnSa3d/coaching-api

sourceHugging Facemitupdated 3mo agoView on Hugging Face
0likes
Dockerfile20 linesDownload Raw Back to root
1FROM python:3.10-slim2 3WORKDIR /app4 5# Install system dependencies6RUN apt-get update && apt-get install -y \7    git \8    && rm -rf /var/lib/apt/lists/*9 10# Copy all files11COPY . .12 13# Install Python dependencies14RUN pip install --no-cache-dir -r requirements.txt15 16# Expose the port Hugging Face expects17EXPOSE 786018 19# Run the Flask app20CMD ["python", "app_coaching.py"]