cosmos-llama-flask / Dockerfile
eneSadi's picture
first commit
c65cfb2 unverified
raw
history blame contribute delete
248 Bytes
FROM python:3.10-slim
RUN useradd user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user ./ $HOME/app
RUN pip install -r requirements.txt
CMD fastapi run --reload --host=0.0.0.0 --port=7860