From f89761ca1768552d2e3f3051c24636f17f693230 Mon Sep 17 00:00:00 2001 From: Eric Pugh Date: Fri, 5 Nov 2021 06:23:08 -0400 Subject: [PATCH] lets use a LTS support node, though it does bump up our docker image size (#437) Co-authored-by: epugh@opensourceconnections.com <> --- Dockerfile.dev | 2 +- Dockerfile.prod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.dev b/Dockerfile.dev index a496748e7..1e3354586 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -25,7 +25,7 @@ RUN apt-get update -qq \ # Node and Yarn RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list -RUN curl -sL https://deb.nodesource.com/setup_15.x | bash - +RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - RUN apt-get update -qq && apt-get install -y --no-install-recommends nodejs yarn netcat \ && rm -rf /var/lib/apt/lists/* diff --git a/Dockerfile.prod b/Dockerfile.prod index fc9b0af64..b7551af38 100644 --- a/Dockerfile.prod +++ b/Dockerfile.prod @@ -16,7 +16,7 @@ RUN apt-get update -qq && apt-get install -y --no-install-recommends vim curl ap # Node and Yarn RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list -RUN curl -sL https://deb.nodesource.com/setup_15.x | bash - +RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - RUN apt-get update \ && apt-get install -y --no-install-recommends \