From 86f612ef2fe357dfcddf1aa5b623f5f0853a9dc8 Mon Sep 17 00:00:00 2001 From: Matthias Bilger Date: Fri, 1 Nov 2024 06:54:47 +0100 Subject: [PATCH] make Dockerfile order cache friendly --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2325933..a879f3a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM alpine +RUN apk -Uuv add curl ca-certificates ADD script.sh /bin/ RUN chmod +x /bin/script.sh -RUN apk -Uuv add curl ca-certificates ENTRYPOINT /bin/script.sh