From 05b7aff80c27351d65ea9076aa8ceb143d161820 Mon Sep 17 00:00:00 2001 From: Dmytro Bondar Date: Thu, 7 Nov 2024 12:25:08 +0100 Subject: [PATCH] chore(docker): disable apk cache (#10203) Refs #10192 Refs #10198 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 61661754e95..1dfafaaa5a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM nginx:1.27.2-alpine -RUN apk update && apk add "nodejs" +RUN apk add --update-cache --no-cache "nodejs" LABEL maintainer="char0n"