Skip to content

Commit 97c8455

Browse files
committed
chore: Update Node.js to version 22 for Nextcloud 32+ compatibility
Update Node.js from version 20 to 22 in both PHP 8.2 and PHP 8.3 Dockerfiles to comply with Nextcloud 32+ minimum stable requirements. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 859f6b7 commit 97c8455

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.docker/Dockerfile.php82

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ RUN chmod uga+x /usr/local/bin/install-php-extensions && sync \
5959
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash \
6060
&& export NVM_DIR="/root/.nvm" \
6161
&& . "$NVM_DIR/nvm.sh" \
62-
&& nvm install 20 \
63-
&& nvm alias default 20
62+
&& nvm install 22 \
63+
&& nvm alias default 22
6464

6565
COPY config/php/* /usr/local/etc/php/conf.d/
6666
COPY scripts/* /var/www/scripts/

.docker/Dockerfile.php83

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ RUN chmod uga+x /usr/local/bin/install-php-extensions && sync \
5959
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash \
6060
&& export NVM_DIR="/root/.nvm" \
6161
&& . "$NVM_DIR/nvm.sh" \
62-
&& nvm install 20 \
63-
&& nvm alias default 20
62+
&& nvm install 22 \
63+
&& nvm alias default 22
6464

6565
COPY config/php/* /usr/local/etc/php/conf.d/
6666
COPY scripts/* /var/www/scripts/

0 commit comments

Comments
 (0)