From 54421ed2f0b83fff0318f9a52b4908703c0ea902 Mon Sep 17 00:00:00 2001 From: Alex Maldonado Date: Mon, 29 Jun 2026 13:12:04 -0400 Subject: [PATCH] fix: include openssh for repo cloning --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 831b471..cd4df09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:26-trixie-slim@sha256:a1d9d671994fc2d26e297ac56b4b1522a8bc7fa71c43b14c # OS packages used to fetch sources and deploy output RUN apt-get update \ && apt-get install -y --no-install-recommends \ - git rsync curl ca-certificates \ + git openssh-client rsync curl ca-certificates \ && rm -rf /var/lib/apt/lists/* # Quarto setup.