File size: 499 Bytes
09f0360 bae57db 09f0360 bae57db 09f0360 bae57db 09f0360 bae57db 09f0360 bae57db 09f0360 bae57db 5fd076f bae57db a09836e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
FROM ollama/ollama:latest
# Crear un usuario no root
RUN useradd -m -u 1000 user
# Cambiar al usuario no root
USER user
# Configurar las variables de entorno
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH \
OLLAMA_HOST=0.0.0.0 \
OLLAMA_PORT=7860
# Establecer el directorio de trabajo
WORKDIR $HOME/app
# Exponer el puerto 7860
EXPOSE 7860
# Copiar el script de inicio al contenedor
COPY . .
# Comando por defecto para ejecutar el script de inicio
CMD ["bash startup.sh"]
|