codellama_deploy / Dockerfile
hArshi07's picture
Update Dockerfile
d7c21a0 verified
raw
history blame contribute delete
No virus
386 Bytes
# Use the official Python 3.10.9 image
FROM python:3.10.9
WORKDIR /code
COPY requirements.txt ./
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN user -m -u 1000 user
USER user
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"]