ChatLink / Dockerfile
mariusjabami's picture
Update Dockerfile
a89e85a verified
raw
history blame contribute delete
865 Bytes
FROM ghcr.io/ggml-org/llama.cpp:full
# 作業ディレクトリを /app に固定(権限問題の回避)
WORKDIR /app
# 必要なパッケージをインストール
RUN apt update && apt install -y python3-pip
# huggingface_hub のインストール
RUN pip install -U huggingface_hub
# Pythonスクリプトで直接実行
RUN python3 -c 'from huggingface_hub import hf_hub_download; \
hf_hub_download(repo_id="lxcorp/Link-270M-GGUF", \
filename="link1-270m-q8_0.gguf", \
local_dir=".", \
local_dir_use_symlinks=False)'
# 念のためファイルが存在するか確認する
RUN ls -lh /app/link1-270m-q8_0.gguf
# CPUでサーバーを起動
COPY template /app/template
# CPUでサーバーを起動
CMD ["--server","-m","/app/link1-270m-q8_0.gguf","--chat-template-file","/app/template","--port","7860","--host","0.0.0.0","-n","4096"]