Initial commit: Miku Discord Bot

This commit is contained in:
2025-12-07 17:15:09 +02:00
commit 8c74ad5260
206 changed files with 50125 additions and 0 deletions

8
Dockerfile.ollama Normal file
View File

@@ -0,0 +1,8 @@
FROM ollama/ollama
# Install curl so we can run health checks
USER root
RUN apt-get update && apt-get install -y curl && apt-get clean
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]