Browse Source

Update Dockerfile to copy all scripts from the scripts directory for improved flexibility in script management

main
Bastian (BaM) 3 months ago
parent
commit
886d1c86cf
  1. 3
      Dockerfile

3
Dockerfile

@ -26,7 +26,8 @@ RUN ssh-keyscan -T 5 -H "$OLLAMA_HOST" >> /root/.ssh/known_hosts || true
# Copy script # Copy script
WORKDIR /app WORKDIR /app
COPY scripts/auto-boot-ollama-host.lua . COPY scripts/* .
#COPY scripts/auto-boot-ollama-host.sh /usr/local/bin/auto-boot-ollama-host.sh #COPY scripts/auto-boot-ollama-host.sh /usr/local/bin/auto-boot-ollama-host.sh
#RUN chmod +x /usr/local/bin/auto-boot-ollama-host.sh #RUN chmod +x /usr/local/bin/auto-boot-ollama-host.sh

Loading…
Cancel
Save