CoolFace
Apppublic

gnudevx/Recommendation-System

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
Dockerfile23 linesDownload Raw Back to root
1FROM python:3.12-slim2 3ENV PYTHONDONTWRITEBYTECODE=1 \4    PYTHONUNBUFFERED=15 6WORKDIR /app7 8RUN apt-get update \9    && apt-get install -y --no-install-recommends \10       build-essential \11       curl \12    && rm -rf /var/lib/apt/lists/*13 14COPY requirements.txt .15RUN python -m pip install --upgrade pip \16    && pip install --no-cache-dir -r requirements.txt17 18COPY . .19 20EXPOSE 786021CMD ["uvicorn", "CV_based:app", "--host", "0.0.0.0", "--port", "7860"]22 23