CoolFace
Apppublic

naimhossen/Personal-assistant

sourceHugging Faceapache-2.0updated 6mo agoView on Hugging Face
0likes
Dockerfile10 linesDownload Raw Back to root
1FROM python:3.92RUN useradd -m -u 1000 user3USER user4ENV PATH="/home/user/.local/bin:$PATH"5WORKDIR /app6COPY --chown=user ./requirements.txt /app/requirements.txt7RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt8COPY --chown=user . /app9CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]10