pipeline1 / Dockerfile
manojpatil's picture
Update Dockerfile
2d67215
raw
history blame contribute delete
437 Bytes
FROM python:3.9
WORKDIR /code
COPY ./Requirements.txt /code/Requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/Requirements.txt
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
### Update permissions for the app
USER root
RUN chmod 777 ~/app/*
USER user
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]