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