diff --git a/ai/hermes/Dockerfile b/ai/hermes/Dockerfile index 8cf1e6d..599a930 100644 --- a/ai/hermes/Dockerfile +++ b/ai/hermes/Dockerfile @@ -13,6 +13,7 @@ FROM nousresearch/hermes-agent:latest USER root RUN apt-get update && \ apt-get install -y --no-install-recommends \ + gosu \ libportaudio2 ca-certificates poppler-utils imagemagick \ libolm-dev \ texlive-latex-base texlive-latex-extra texlive-fonts-recommended \ diff --git a/ai/honcho/Dockerfile b/ai/honcho/Dockerfile index 9407eea..9cbf477 100644 --- a/ai/honcho/Dockerfile +++ b/ai/honcho/Dockerfile @@ -28,9 +28,10 @@ ENV PATH=$PNPM_HOME:$PATH RUN corepack enable && corepack prepare pnpm@latest --activate WORKDIR /app -RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y git openssh-client && rm -rf /var/lib/apt/lists/** -ARG OPENCONCHO_SHA=3b5c3293fc18d768dbe85285264a8d66c896bd81 +ARG OPENCONCHO_SHA=148766312e6a5256f399c64171854f0ff6173b6d +RUN mkdir -p -m 0700 ~/.ssh && ssh-keyscan -p 2222 code.lazyworkhorse.net >> ~/.ssh/known_hosts 2>/dev/null RUN --mount=type=ssh git clone --depth 1 ssh://git@code.lazyworkhorse.net:2222/gortium/openconcho.git /app && \ git -C /app fetch --depth 1 origin ${OPENCONCHO_SHA} && \ git -C /app checkout ${OPENCONCHO_SHA} diff --git a/ai/llama-cpp/Dockerfile b/ai/llama-cpp/Dockerfile index 5084278..3b8d2ac 100644 --- a/ai/llama-cpp/Dockerfile +++ b/ai/llama-cpp/Dockerfile @@ -1,10 +1,12 @@ # llama-cpp-rocm6/Dockerfile # Custom llama.cpp server with ROCm 6.1 + gfx906 (MI50) support. # Build: docker build -t llama-cpp:rocm-gfx906 . +# NOTE: Update LLAMACPP_VERSION for bugfixes, but verify ROCm 6.1 compat +# by checking if recent releases still support -DGGML_HIP=ON. FROM rocm/dev-ubuntu-22.04:6.1.2-complete AS builder RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y curl git build-essential pkg-config cmake make && rm -rf /var/lib/apt/lists/* -ARG LLAMACPP_VERSION=b9596 +ARG LLAMACPP_VERSION=b9890 RUN git clone --depth 1 --branch ${LLAMACPP_VERSION} https://github.com/ggml-org/llama.cpp.git /build WORKDIR /build ENV HIP_PATH=/opt/rocm ROCM_PATH=/opt/rocm PATH=/opt/rocm/bin:/opt/rocm/llvm/bin:${PATH} CMAKE_PREFIX_PATH=/opt/rocm