From e1f6e34da1ad46320b1a4383f653328da20913d8 Mon Sep 17 00:00:00 2001 From: devthejo Date: Tue, 7 Nov 2023 16:54:50 +0100 Subject: [PATCH] fix: sentry_auth_token mode --- dashboard/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/Dockerfile b/dashboard/Dockerfile index efe13e1fa..1f475a53a 100644 --- a/dashboard/Dockerfile +++ b/dashboard/Dockerfile @@ -16,7 +16,7 @@ COPY --chown=1000:1000 dashboard/. . ENV NODE_ENV=production -RUN --mount=type=secret,id=sentry_auth_token \ +RUN --mount=type=secret,id=sentry_auth_token,mode=0444 \ yarn build; \ if [ -f "/run/secrets/sentry_auth_token" ]; then \ export SENTRY_AUTH_TOKEN=$(cat /run/secrets/sentry_auth_token); \