ollamafast / Dockerfile
iricardoxd's picture
Update Dockerfile
c740f40 verified
raw
history blame contribute delete
518 Bytes
FROM ollama/ollama:latest
# Configura las variables de entorno para permitir conexiones externas
ENV OLLAMA_HOST=0.0.0.0
ENV OLLAMA_ORIGINS="*"
ENV OLLAMA_NUM_PARALLEL=10
ENV OLLAMA_MAX_LOADED_MODELS=2
ENV OLLAMA_MAX_QUEUE=512
# Custom user is required for permissions and stuff
RUN useradd --home /home/container container
COPY . /home/container
RUN chown -R container /home/container
RUN chmod 777 /home/container -R
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container