File size: 578 Bytes
09f0360 bae57db 09f0360 bae57db 09f0360 bae57db 09f0360 bae57db 09f0360 bae57db 09f0360 bae57db 5fd076f bae57db 5fd076f bae57db 5fd076f 81a218f bae57db |
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 28 29 30 31 32 |
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 . .
# Dar permisos de ejecución al script de inicio
RUN chmod +x *
RUN chmod 777 *
# Comando por defecto para ejecutar el script de inicio
CMD ["./startup.sh"]
|