From e2eae1a8331f5efbb6c715516d036953e68c5f02 Mon Sep 17 00:00:00 2001 From: Garrett Summerfield Date: Tue, 10 Jan 2023 22:51:47 -0600 Subject: [PATCH 1/2] Update Dockerfile to use NodeJS 16 Bumps version of NodeJS from version 14 to version 16. --- build/panel/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/panel/Dockerfile b/build/panel/Dockerfile index 7e46fc7..c32f0ef 100644 --- a/build/panel/Dockerfile +++ b/build/panel/Dockerfile @@ -10,7 +10,7 @@ ENV LANG=C.UTF-8 USER root RUN apt -y update \ && apt -y --no-install-recommends install lsb-release ca-certificates apt-transport-https software-properties-common gnupg2 curl sudo \ - && curl -sL https://deb.nodesource.com/setup_14.x | bash - \ + && curl -sL https://deb.nodesource.com/setup_16.x | bash - \ && curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ && echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/sury-php.list \ From 23f29f36e354c177c2d86c54c749db7387b6525b Mon Sep 17 00:00:00 2001 From: Garrett Summerfield Date: Thu, 31 Aug 2023 15:08:06 -0500 Subject: [PATCH 2/2] Update Dockerfile to use NodeJS 18 Bumps version of NodeJS from version 16 to version 18. --- build/panel/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/panel/Dockerfile b/build/panel/Dockerfile index c32f0ef..f6bf197 100644 --- a/build/panel/Dockerfile +++ b/build/panel/Dockerfile @@ -10,7 +10,7 @@ ENV LANG=C.UTF-8 USER root RUN apt -y update \ && apt -y --no-install-recommends install lsb-release ca-certificates apt-transport-https software-properties-common gnupg2 curl sudo \ - && curl -sL https://deb.nodesource.com/setup_16.x | bash - \ + && curl -sL https://deb.nodesource.com/setup_18.x | bash - \ && curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ && echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/sury-php.list \