From 389a455bd457c145a647d6f55dd4f480f75167e6 Mon Sep 17 00:00:00 2001 From: Matthias Liffers Date: Sat, 23 Dec 2023 05:34:31 +0800 Subject: [PATCH] Add curl to docker image --- 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" ]