From c587af7c0e2bf5d186cc396210a57a880bc98add Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Thu, 13 Jun 2024 15:16:34 +0100 Subject: [PATCH] fix(dogfood/Dockerfile): add explicit --chown to COPY directive (#13569) --- dogfood/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dogfood/Dockerfile b/dogfood/Dockerfile index 19723853aa..27f90a5752 100644 --- a/dogfood/Dockerfile +++ b/dogfood/Dockerfile @@ -90,7 +90,7 @@ SHELL ["/bin/bash", "-c"] # the default mirror with teraswitch. RUN apt-get update && apt-get install --yes ca-certificates -COPY files / +COPY --chown=root:root files / # Install packages from apt repositories ARG DEBIAN_FRONTEND="noninteractive"