CoolFace
Apppublic

monish563/NU-KIOSK-API

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1FROM python:3.11-slim2 3ENV PYTHONDONTWRITEBYTECODE=1 \4    PYTHONUNBUFFERED=1 \5    PORT=78606 7WORKDIR /app8 9COPY requirements.txt .10RUN pip install --no-cache-dir -r requirements.txt11 12COPY backend backend13COPY Archive Archive14 15EXPOSE 786016 17# HF Spaces set PORT=7860; use PORT or fallback to 786018CMD ["sh", "-c", "uvicorn backend.main:app --host 0.0.0.0 --port ${PORT:-7860}"]19