aboutsummaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2023-06-02 10:08:05 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2023-06-02 10:08:05 +0000
commit67ba1de27cc91061a8139dcf71cf63a70bff07d8 (patch)
tree27c34196d3bf72e97d5643555ad1f630ea7b65ab /docker
parentcc4a9f0d2f238c258850951f4641e34cf4413b7b (diff)
increase node version to v16, fixes #2703
Closes #2703 Merge request studip/studip!1821
Diffstat (limited to 'docker')
-rw-r--r--docker/studip/Dockerfile2
-rw-r--r--docker/tests/php72/Dockerfile2
-rw-r--r--docker/tests/php74/Dockerfile2
3 files changed, 3 insertions, 3 deletions
diff --git a/docker/studip/Dockerfile b/docker/studip/Dockerfile
index f5e503b..8ee1d20 100644
--- a/docker/studip/Dockerfile
+++ b/docker/studip/Dockerfile
@@ -18,7 +18,7 @@ RUN apt update && apt install -y --no-install-recommends \
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
-FROM node:14 as nodejs
+FROM node:16 as nodejs
# Install node modules
COPY . /studip
diff --git a/docker/tests/php72/Dockerfile b/docker/tests/php72/Dockerfile
index 17cafe5..b8b277b 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_14.x | bash -
+RUN curl -sL https://deb.nodesource.com/setup_16.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 57557c2..49149a9 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_14.x | bash -
+RUN curl -sL https://deb.nodesource.com/setup_16.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/*