From c7b27a53e727ed31db536b67039c3c80d73ee991 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 2 Aug 2021 10:01:20 +0000 Subject: [PATCH] chore(deps): update node.js to v14.17.4 --- client.Dockerfile | 4 ++-- server.Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client.Dockerfile b/client.Dockerfile index 196aa51cb4..45eaf359cf 100644 --- a/client.Dockerfile +++ b/client.Dockerfile @@ -1,4 +1,4 @@ -FROM node:14.17.3-buster AS builder +FROM node:14.17.4-buster AS builder # this is a bit clunky, perhaps there's a more concise way of passing in build # arguments @@ -27,7 +27,7 @@ RUN npm run build:client WORKDIR /home/node/config RUN git clone https://github.com/freeCodeCamp/client-config.git client -FROM node:14.17.3-alpine +FROM node:14.17.4-alpine RUN npm i -g serve USER node WORKDIR /home/node diff --git a/server.Dockerfile b/server.Dockerfile index eb5e84df96..166e77c417 100644 --- a/server.Dockerfile +++ b/server.Dockerfile @@ -1,4 +1,4 @@ -FROM node:14.17.3-alpine as builder +FROM node:14.17.4-alpine as builder USER node WORKDIR /home/node/build COPY --chown=node:node . . @@ -7,7 +7,7 @@ RUN npm ci RUN npm run build:curriculum RUN npm run build:server -FROM node:14.17.3-alpine +FROM node:14.17.4-alpine USER node WORKDIR /home/node/api # get and install deps