From 87254718e9fe0518ccb79567a37786f5d1f232e7 Mon Sep 17 00:00:00 2001 From: Travis Shivers Date: Sun, 11 Oct 2020 15:31:07 -0500 Subject: [PATCH] build(docker): bump node to v14.13.1 Dependabot missed the build stages so this bumps them manually --- Dockerfile | 2 +- Dockerfile.web | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6e953aa1..767533f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # build environment -FROM --platform=$BUILDPLATFORM node:14.11.0-alpine3.12 as build-stage +FROM --platform=$BUILDPLATFORM node:14.13.1-alpine3.12 as build-stage RUN mkdir /app && chown -R node:node /app WORKDIR /app RUN apk add --no-cache python3 make g++ diff --git a/Dockerfile.web b/Dockerfile.web index 3c521342..ae91ba2e 100644 --- a/Dockerfile.web +++ b/Dockerfile.web @@ -1,5 +1,5 @@ # build environment -FROM --platform=$BUILDPLATFORM node:14.11.0-alpine3.12 as build-stage +FROM --platform=$BUILDPLATFORM node:14.13.1-alpine3.12 as build-stage RUN mkdir /app && chown -R node:node /app WORKDIR /app RUN apk add --no-cache python3 make g++