diff --git a/Dockerfile b/Dockerfile index f03c2b72..13a8d5c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,7 +48,7 @@ RUN apt-get update && apt-get -y install \ # Install node and yarn RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \ - curl -sL https://deb.nodesource.com/setup_20.x | bash - && \ + curl -sL https://deb.nodesource.com/setup_22.x | bash - && \ apt-get update && apt-get install -y \ nodejs \ yarn \ diff --git a/Dockerfile-frankenphp b/Dockerfile-frankenphp index dccb41e1..f381f330 100644 --- a/Dockerfile-frankenphp +++ b/Dockerfile-frankenphp @@ -27,7 +27,7 @@ RUN set -eux; \ | tee /etc/apt/sources.list.d/yarn.list; \ \ # Run NodeSource setup script (unchanged) - curl -sL https://deb.nodesource.com/setup_20.x | bash -; \ + curl -sL https://deb.nodesource.com/setup_22.x | bash -; \ \ # Install Node.js + Yarn apt-get update; \