BnSa3d/coaching-api
0
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"]