From 4a5488466ad99ccb0f9fa978e7e5cf5e65c73fad Mon Sep 17 00:00:00 2001 From: mrjvs Date: Wed, 19 Aug 2026 18:46:31 +0200 Subject: [PATCH] fix: allow docker user to update the internal SQLite DB --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cf4e499..4cc5299 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,6 +44,6 @@ EXPOSE 8080 COPY package.json . COPY --from=dependencies ${app_dir}/node_modules ${app_dir}/node_modules -COPY --from=build ${app_dir}/.output ${app_dir}/.output +COPY --chown=node:node --from=build ${app_dir}/.output ${app_dir}/.output CMD ["node", "--enable-source-maps", ".output/server/index.mjs"]