fix: remove version pins, ignore DL3008 (incompatible with this base)
PR Checks / hadolint (pull_request) Successful in 7s
PR Checks / build-test (pull_request) Failing after 33s

This commit is contained in:
2026-06-14 15:20:58 -04:00
parent bcc349744e
commit 0576c5c680
+4 -3
View File
@@ -7,11 +7,12 @@ ENV NPM_CONFIG_UPDATE_NOTIFIER=false \
NPM_CONFIG_LOGLEVEL=warn \ NPM_CONFIG_LOGLEVEL=warn \
NODE_ENV=production NODE_ENV=production
# hadolint ignore=DL3008
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
python3=3.12* \ python3 \
make=4.3* \ make \
g++=14.2* \ g++ \
&& rm -rf /var/lib/apt/lists/* \ && rm -rf /var/lib/apt/lists/* \
&& npm install -g --no-fund --no-audit "@openchamber/web@${OPENCHAMBER_WEB_VERSION}" \ && npm install -g --no-fund --no-audit "@openchamber/web@${OPENCHAMBER_WEB_VERSION}" \
&& npm cache clean --force \ && npm cache clean --force \