CoolFace
Apppublic

noa-strupinsky/SIFT

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Dockerfile20 linesDownload Raw Back to root
1FROM python:3.10-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    git \7    libxcb1 \8    libgl1 \9    libglib2.0-0 \10    libsm6 \11    libxext6 \12    libxrender1 \13    && rm -rf /var/lib/apt/lists/*14 15COPY requirements.txt .16RUN pip install --no-cache-dir -r requirements.txt17 18COPY . .19 20CMD ["python", "app.py"]