ollama / Dockerfile
YussefGAFeer's picture
Update Dockerfile
5234476 verified
raw
history blame contribute delete
323 Bytes
FROM python:3.9
RUN useradd -m -u 1000 user
USER user
WORKDIR /app
# Install Ollama
RUN curl -fsSL https://ollama.com/install.sh | sh
# Install other dependencies (if needed)
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY . /app
EXPOSE 7860
ENTRYPOINT ["/app/entrypoint.sh"]