File size: 519 Bytes
d9004c6
53e31d7
 
 
3880367
eb06e3c
 
9e9be21
af39108
0db5c8a
 
 
33e65c5
0db5c8a
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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=30
ENV OLLAMA_MAX_LOADED_MODELS=2
ENV OLLAMA_MAX_QUEUE=1024
# 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