summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorClark Boylan <clark.boylan@gmail.com>2022-03-14 15:29:31 -0700
committerClark Boylan <clark.boylan@gmail.com>2022-03-14 15:29:31 -0700
commitbb52902303c0074907e36a16679a4e785ec9aabf (patch)
treea550ba90ba50ff328b32ceaa76eb63cbbaae83c5 /Dockerfile
parentac51b54acc0cdbd884d22da199ccda426c893c89 (diff)
downloadzuul-bb52902303c0074907e36a16679a4e785ec9aabf.tar.gz
Update nodejs runtime to version 16
We had been using version 14 which is the previous LTS. Now there are problems running: npx browserslist@latest --update-db running out of memory. Update to the current nodejs LTS version to ensure we are running an up to date runtime that hopefully performs more consistently with the browserslist command. Change-Id: Ib20c1090ea0f30b7dac2780b6ed963dd6e4b6f77
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 16bde64d4..d65a9746c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM docker.io/library/node:14-bullseye as js-builder
+FROM docker.io/library/node:16-bullseye as js-builder
COPY web /tmp/src
# Explicitly run the Javascript build