RAGAPI / Dockerfile
shethjenil's picture
Upload 2 files
96b4814 verified
raw
history blame contribute delete
212 Bytes
FROM python:3.11-slim
RUN useradd -ms /bin/bash myuser
WORKDIR /code
COPY . .
RUN pip install flask llama-index-embeddings-huggingface g4f[all]
RUN chown -R myuser:myuser /code
USER myuser
CMD ["python","app.py"]