From 06519fdff9599cbe8c50c7026d1021f7720ccf65 Mon Sep 17 00:00:00 2001 From: Travis Shivers Date: Mon, 31 Aug 2020 19:15:56 -0500 Subject: [PATCH] fix(docker): use node:current-alpine --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f667ed3a..b9e540ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # build environment -FROM --platform=$BUILDPLATFORM base-stage as build-stage +FROM --platform=$BUILDPLATFORM node:current-alpine as build-stage RUN mkdir /app && chown -R node:node /app WORKDIR /app RUN apk add --no-cache python make g++