From b24141ec7bcd972450c982764d8f0716f384ed91 Mon Sep 17 00:00:00 2001 From: David Whittington Date: Mon, 20 May 2024 10:44:23 -0500 Subject: [PATCH] fix(litestream docker): install curl for ytt download PE-5286 --- litestream/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litestream/Dockerfile b/litestream/Dockerfile index 50ba77e9..f88d81d6 100644 --- a/litestream/Dockerfile +++ b/litestream/Dockerfile @@ -1,5 +1,7 @@ FROM litestream/litestream:0.3.13 +RUN apk update && apk add --no-cache curl + COPY install-ytt.sh /install-ytt.sh RUN /install-ytt.sh && rm /install-ytt.sh