From 64ebfb04d6800821fa8b476ba417cb0e99dc54b7 Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Sun, 14 Jun 2026 15:22:16 -0400 Subject: [PATCH] fix: restore USER root with hadolint ignore (needed for apt in non-root base) --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2603f14..0ec7908 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,8 @@ ENV NPM_CONFIG_UPDATE_NOTIFIER=false \ NPM_CONFIG_LOGLEVEL=warn \ NODE_ENV=production -# hadolint ignore=DL3008 +# hadolint ignore=DL3008,DL4006 +USER root RUN apt-get update \ && apt-get install -y --no-install-recommends \ python3 \