open-webui-rag-system / Dockerfile
hugging2021's picture
Update Dockerfile
273b615 verified
raw
history blame
393 Bytes
#FROM python:3.10
#WORKDIR /app
#COPY . /app
# /tmp ๋””๋ ‰ํ† ๋ฆฌ ์ƒ์„ฑ ๋ฐ ๊ถŒํ•œ ๋ถ€์—ฌ
#RUN mkdir -p /tmp && chmod 1777 /tmp
#RUN chmod -Rc 775 /app
# TMPDIR ํ™˜๊ฒฝ๋ณ€์ˆ˜๋ฅผ ์ง€์ •ํ•˜์—ฌ pip install ์‹คํ–‰
#RUN TMPDIR=/tmp pip install --upgrade pip && TMPDIR=/tmp pip install -r requirements.txt -U
#EXPOSE 8500
CMD ["uvicorn", "rag_server:app", "--host", "0.0.0.0", "--port", "8500"]