From eb9b276456470987835b67e0818095c4b7f49275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dami=C3=A1n=20B=C3=BAho?= Date: Wed, 6 May 2026 17:21:39 -0300 Subject: [PATCH] small fix to shush static analyzers https://avd.aquasec.com/misconfig/dockerfile/general/ds-0002/ https://github.com/hadolint/hadolint/wiki/DL3002 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e914e63d7..77ce50d67 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,5 +7,7 @@ COPY . . RUN npm install && \ npm run build +USER node + ENTRYPOINT [ "node", "./out/server/src/server.js" ] CMD [ "--stdio" ]