From f62bf9f8fb14c1efdbc55392fa4fcd8cc8563fb4 Mon Sep 17 00:00:00 2001 From: m Date: Fri, 8 May 2026 02:10:40 +0200 Subject: [PATCH] feat(t-paliad-151) Dockerfile: openssh-client for remote Paliadin paliad's RemotePaliadinService shells out to `ssh m@mriver paliadin-shim` to deliver Paliadin turns from prod (paliad.de Dokploy container) to mRiver where the long-lived tmux+claude pane lives. The alpine final stage didn't ship an SSH client; add openssh-client (~1.1MB compressed). The Go service wires this up in a follow-up commit (Paliadin interface split). When PALIADIN_REMOTE_HOST is unset, the binary still picks up the local-tmux PoC path and never invokes ssh, so this change is safe on its own. Refs m/paliad#12 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c75a6a3..e21898b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ COPY . . RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o /paliad ./cmd/server FROM alpine:3.21 -RUN apk add --no-cache ca-certificates +RUN apk add --no-cache ca-certificates openssh-client WORKDIR /app COPY --from=backend /paliad /app/paliad COPY --from=frontend /app/frontend/dist /app/dist