From 0576c5c680ab845d42ef01d4837b9428f53e459f Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Sun, 14 Jun 2026 15:20:58 -0400 Subject: [PATCH] fix: remove version pins, ignore DL3008 (incompatible with this base) --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1074016..2603f14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,11 +7,12 @@ ENV NPM_CONFIG_UPDATE_NOTIFIER=false \ NPM_CONFIG_LOGLEVEL=warn \ NODE_ENV=production +# hadolint ignore=DL3008 RUN apt-get update \ && apt-get install -y --no-install-recommends \ - python3=3.12* \ - make=4.3* \ - g++=14.2* \ + python3 \ + make \ + g++ \ && rm -rf /var/lib/apt/lists/* \ && npm install -g --no-fund --no-audit "@openchamber/web@${OPENCHAMBER_WEB_VERSION}" \ && npm cache clean --force \