CoolFace
Apppublic

Candidate/Gemini

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile15 linesDownload Raw Back to root
1FROM python:3.13-slim2 3WORKDIR /app4 5RUN python3 -m venv /app/venv6ENV PATH="/app/venv/bin:$PATH"7 8COPY requirements.txt /app/9RUN pip install --no-cache-dir -r requirements.txt10 11COPY . /app12 13EXPOSE 808014 15CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8080"]