From b2d7c6cc42962bb26baa2eb5e965d6e3a6f48d73 Mon Sep 17 00:00:00 2001 From: Gary van Woerkens Date: Wed, 14 Feb 2024 19:41:43 +0100 Subject: [PATCH] chore: dockerfile chown --- api-node/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-node/Dockerfile b/api-node/Dockerfile index fc47c13c..57d9f02d 100644 --- a/api-node/Dockerfile +++ b/api-node/Dockerfile @@ -6,7 +6,7 @@ RUN mkdir /app-node && chown 1000:1000 /app-node \ WORKDIR /app-node USER 1000 -COPY ./yarn.lock ./.yarnrc.yml ./ +COPY --chown=1000:1000 ./yarn.lock ./.yarnrc.yml ./ COPY --chown=1000:1000 ./.yarn .yarn RUN yarn fetch