aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docker/Readme.md1
-rw-r--r--docker/studip/Dockerfile4
-rw-r--r--docker/tests/php72/Dockerfile2
-rw-r--r--docker/tests/php74/Dockerfile2
-rw-r--r--package.json2
5 files changed, 5 insertions, 6 deletions
diff --git a/docker/Readme.md b/docker/Readme.md
index a4a2a71..bff10df 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 ec20ce1..de3a4b1 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 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/*
diff --git a/package.json b/package.json
index e9e7201..d158f63 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",