From 0c59c34380cfdfb5a11903101594f699992675cd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 16:06:00 +0000 Subject: [PATCH] Update Node.js to v22.12.0 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 432cbe40e..dda086b61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN set -euxo pipefail && \ /root/.local/bin/poetry install --no-interaction && \ /root/.local/bin/poetry run sphinx-build -M dirhtml "." "_build" -FROM node:22.11.0 AS docs-minification +FROM node:22.12.0 AS docs-minification COPY --link --from=docs-source /docs/_build/dirhtml/ /docs/ @@ -42,7 +42,7 @@ COPY --link package.json package-lock.json webpack.mix.js artisan /app/ COPY --link resources/ /app/resources/ COPY --link public/ /app/public/ -FROM node:22.11.0 AS nova-components +FROM node:22.12.0 AS nova-components COPY --link /nova-components/ /nova-components/ @@ -60,7 +60,7 @@ RUN set -eux && \ npm install --no-progress && \ npm run production --no-progress -FROM node:22.11.0 AS frontend +FROM node:22.12.0 AS frontend COPY --link --from=frontend-source /app/ /app/