diff --git a/docker/Readme.md b/docker/Readme.md index a4a2a71d45cb2926d97ee4b8b04c0ad801c742fd..bff10df5ce28950c70a81d5b9ae71805c5a2859e 100644 --- a/docker/Readme.md +++ b/docker/Readme.md @@ -6,4 +6,3 @@ You can trigger an automated push to the studip docker repository by providing t `./build_images.sh push` All images are automatically built for linux/amd64 -\ No newline at end of file \ No newline at end of file diff --git a/docker/studip/Dockerfile b/docker/studip/Dockerfile index ec20ce1875c8408dee17a696fc6957c6187cfc1b..de3a4b1f3de96018e4fa5755b767bbf8d4631367 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:12 as nodejs +FROM node:14 as nodejs # Install node modules COPY . /studip @@ -57,4 +57,4 @@ RUN chmod u+x /usr/local/bin/docker-entrypoint.sh # Set start parameters ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] -CMD ["apache2-foreground"] \ No newline at end of file +CMD ["apache2-foreground"] diff --git a/docker/tests/php72/Dockerfile b/docker/tests/php72/Dockerfile index 796d0648844d21f38da91aad2abde77a81d632fb..17cafe59d33ab5d63b881dd732a06a12fb880b10 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 7d77515a2b7dacab3e8ac227b2e542f29f9ce020..57557c2f5db8e36f905fc12c985f350588b20cf1 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/* diff --git a/package.json b/package.json index e9e72011aa89d6d790c1f87096240a47ee44bf8a..d158f63f94f0d2e8f5458c2a2abc6fe5d63f4b46 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "url": "https://develop.studip.de/svn/studip" }, "engines": { - "node": ">=12" + "node": ">=14" }, "devDependencies": { "@babel/core": "^7.17.9",