CoolFace
Apppublic

JSWOOK/gazeTracker

sourceHugging Faceupdated 17d agoView on Hugging Face
0likes
Dockerfile12 linesDownload Raw Back to root
1FROM python:3.11-slim2 3RUN apt-get update && apt-get install -y --no-install-recommends git libgl1 libglib2.0-0 \4  && rm -rf /var/lib/apt/lists/*5WORKDIR /app6COPY requirements.txt .7RUN pip install --no-cache-dir -r requirements.txt8COPY . .9RUN python download_weights.py10EXPOSE 786011CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]12