chatbot / Dockerfile
nblong's picture
rag + search tool
44307c0
raw
history blame contribute delete
357 Bytes
FROM python:3.11-slim
# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user
# Switch to the "user" user
USER user
# Set home to the user's home directory
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir --upgrade -r requirements.txt
EXPOSE 7860
CMD python -m main