EncryptedBinary/EMNet
0
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 