CoolFace
Apppublic

trexhere/Cricket

sourceHugging Facecc-by-sa-4.0updated 1y agoView on Hugging Face
1likes
Dockerfile15 linesDownload Raw Back to root
1FROM python:3.92 3RUN useradd -m -u 1000 user4 5WORKDIR /app6 7COPY --chown=user ./requirements.txt requirements.txt8 9RUN pip install --no-cache-dir --upgrade -r requirements.txt10 11COPY --chown=user . /app12 13# Change the CMD to specify the host and port14CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]15