fix: allow docker user to update the internal SQLite DB

This commit is contained in:
mrjvs
2026-08-19 18:46:31 +02:00
parent 82737d87f3
commit 4a5488466a

View File

@@ -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"]