9 lines
171 B
Docker
9 lines
171 B
Docker
FROM ollama/ollama
|
|
|
|
RUN ollama pull llama3.1:8b-instruct-q5_K_M
|
|
|
|
COPY start.sh /start.sh
|
|
RUN chmod +x /start.sh
|
|
|
|
# Standardbefehl zum Starten des Servers
|
|
CMD ["/start.sh"] |