aboutsummaryrefslogtreecommitdiff
path: root/docker/tests
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2022-10-12 11:42:48 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2022-10-12 11:42:48 +0000
commita9668016512b77112eae786ef9625de7544cfbd0 (patch)
treed3bd60a55899d5cd2c1b21d3626cc7ca23fcca5c /docker/tests
parent1deade6ba05557e880b9ab11fb304d832540d89d (diff)
adjust minimal node.js version, fixes #1662
Closes #1662 Merge request studip/studip!1069
Diffstat (limited to 'docker/tests')
-rw-r--r--docker/tests/php72/Dockerfile2
-rw-r--r--docker/tests/php74/Dockerfile2
2 files changed, 2 insertions, 2 deletions
diff --git a/docker/tests/php72/Dockerfile b/docker/tests/php72/Dockerfile
index 796d064..17cafe5 100644
--- a/docker/tests/php72/Dockerfile
+++ b/docker/tests/php72/Dockerfile
@@ -15,7 +15,7 @@ RUN docker-php-ext-configure gd --with-png-dir=/usr/include/ \
RUN docker-php-ext-install pdo gettext curl gd mbstring zip pdo pdo_mysql mysqli intl json
# Install npm using nvm
-RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
+RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
RUN apt update && apt install -y --no-install-recommends nodejs \
curl apt-transport-https ca-certificates gnupg unzip git \
&& rm -rf /var/lib/apt/lists/*
diff --git a/docker/tests/php74/Dockerfile b/docker/tests/php74/Dockerfile
index 7d77515..57557c2 100644
--- a/docker/tests/php74/Dockerfile
+++ b/docker/tests/php74/Dockerfile
@@ -14,7 +14,7 @@ RUN docker-php-ext-configure gd --with-jpeg
RUN docker-php-ext-install pdo gettext curl gd mbstring zip pdo pdo_mysql mysqli intl json
# Install npm using nvm
-RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
+RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
RUN apt update && apt install -y --no-install-recommends nodejs \
curl apt-transport-https ca-certificates gnupg unzip git \
&& rm -rf /var/lib/apt/lists/*