ваше сообщение коммита

This commit is contained in:
2025-09-04 13:24:53 +03:00
parent 888873f630
commit 9f94295d15
8 changed files with 118 additions and 79 deletions

10
Dockerfile.ollama Normal file
View File

@@ -0,0 +1,10 @@
FROM ollama/ollama:latest
# Устанавливаем curl для API запросов
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
# Копируем entrypoint скрипт
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]