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
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user