sid_rath / Dockerfile
HTAR5's picture
Upload 3 files
248e15e verified
raw history blame
No virus
367 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 sid
USER sid
ENV HOME=/home/sid \
PATH=/home/sid/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=sid . $HOME/app
CMD [ "uvicorn", "app:app", "--host", "0.0.0.0","--port","7860" ]