CoolFace
Apppublic

EncryptedBinary/EMNet

sourceHugging Facecc-by-4.0updated 8mo agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1FROM python:3.10-slim2 3WORKDIR /app4 5# ✅ Install system dependencies (THIS FIXES THE ERROR)6RUN apt-get update && apt-get install -y \7    build-essential \8    libgomp1 \9    && rm -rf /var/lib/apt/lists/*10 11COPY requirements.txt .12RUN pip install --no-cache-dir -r requirements.txt13 14COPY . .15 16EXPOSE 786017 18CMD ["python", "app.py"]19