From 56fb55d8e219c60f5499036301c5fb786a0da17d Mon Sep 17 00:00:00 2001 From: haptikrajasashtikar Date: Thu, 26 Oct 2023 14:42:42 +0530 Subject: [PATCH] Update the version of NodeJS in the Dockerfile --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 6f43808f..a0d9f87a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -18,7 +18,7 @@ COPY docker/nginx.conf /etc/nginx/nginx.conf COPY docker/default.site.conf /etc/nginx/sites-available/default # TODO: Separate this out to a dev/test docker image -RUN curl -sL https://deb.nodesource.com/setup_12.x | bash && \ +RUN curl -sL https://deb.nodesource.com/setup_16.x | bash && \ apt-get install nodejs && \ npm install -g newman && \ npm install -g newman-reporter-htmlextra && \