CoolFace
Apppublic

SoumyaJ/DynamicScheduler

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile13 linesDownload Raw Back to root
1FROM python:3.92 3RUN useradd -m -u 1000 user4USER user5ENV PATH="/home/user/.local/bin:$PATH"6 7WORKDIR /app8 9COPY --chown=user ./requirements.txt requirements.txt10RUN pip install --no-cache-dir --upgrade -r requirements.txt11 12COPY --chown=user . /app13CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]