RAG-with-LLAMA / Dockerfile
Solo448's picture
Upload 3 files
4f60bb3 verified
raw
history blame contribute delete
865 Bytes
FROM python:3.10-slim
# Install curl and other dependencies
RUN apt-get update && apt-get install -y curl zstd && rm -rf /var/lib/apt/lists/*
# Install Ollama
RUN curl -fsSL https://ollama.com/install.sh | sh
# Set up user and working directory
# Hugging Face Spaces require running as a non-root user
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
# Copy requirements and install
COPY --chown=user requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY --chown=user . .
# Ensure clean writable directories for database and uploads
RUN rm -rf chroma_db data && mkdir -p chroma_db data && chown -R user:user chroma_db data
# Make start script executable
RUN chmod +x start.sh
# Expose port
EXPOSE 7860
# Start script
ENTRYPOINT ["./start.sh"]