rag2line / Dockerfile
alanchen1115's picture
Update Dockerfile
2090a42 verified
raw
history blame
346 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
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
COPY --chown=user ./local_static $HOME/app/static
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]