CoolFace
Apppublic

AetherBots/Taskbotv2

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile5 linesDownload Raw Back to root
1# Use the official llama.cpp full 2FROM ghcr.io/ggml-org/llama.cpp:full3RUN apt update && apt install wget -y4RUN wget "https://huggingface.co/mradermacher/StrawberryLemonade-L3-70B-v1.0-i1-GGUF/resolve/main/StrawberryLemonade-L3-70B-v1.0.i1-IQ2_M.gguf" -O /StrawberryLemonade-L3-70B-v1.0.i1-IQ2_M.gguf5CMD ["--server", "-m", "/StrawberryLemonade-L3-70B-v1.0.i1-IQ2_M.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "512", "--no-warmup"]