Spaces:
Runtime error
Runtime error
FROM python:3.9 | |
WORkDIR /code | |
COPY ./requirements.txt /code/requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
# setup new user | |
RUN useradd -m -u 1000 user | |
# switch to the new user | |
USER user | |
# set home to the new user's home | |
ENV HOME=/home/user \ | |
PATH=/home/user/.local/bin:$PATH | |
WORKDIR $HOME/app | |
COPY --chown=user . $HOME/app | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] | |