Skip to content

Commit 93b04fb

Browse files
committed
Use nodejs 22 in docker images
1 parent a2d94b5 commit 93b04fb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ RUN apt-get update && apt-get -y install \
4848
# Install node and yarn
4949
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
5050
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
51-
curl -sL https://deb.nodesource.com/setup_20.x | bash - && \
51+
curl -sL https://deb.nodesource.com/setup_22.x | bash - && \
5252
apt-get update && apt-get install -y \
5353
nodejs \
5454
yarn \

Dockerfile-frankenphp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN set -eux; \
2727
| tee /etc/apt/sources.list.d/yarn.list; \
2828
\
2929
# Run NodeSource setup script (unchanged)
30-
curl -sL https://deb.nodesource.com/setup_20.x | bash -; \
30+
curl -sL https://deb.nodesource.com/setup_22.x | bash -; \
3131
\
3232
# Install Node.js + Yarn
3333
apt-get update; \

0 commit comments

Comments
 (0)