From 046c79fd151c29d0c6e8ae5c65f07a535e256b28 Mon Sep 17 00:00:00 2001 From: Matthias Liffers Date: Fri, 12 Jan 2024 01:56:35 +0800 Subject: [PATCH] Add curl to docker image (#344) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5a7598b..55f1a77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY . . RUN go build FROM restic/restic:0.16.0 -RUN apk add --no-cache rclone bash +RUN apk add --no-cache rclone bash curl COPY --from=builder /app/autorestic /usr/bin/autorestic ENTRYPOINT [] CMD [ "autorestic" ]