From f9293decf5a111190937d44fdd0b486b72cd7592 Mon Sep 17 00:00:00 2001 From: Daniel Kolkena Date: Thu, 26 Oct 2023 17:30:05 -0700 Subject: [PATCH] Adding building dependencies to first image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 73a7bf2fbd..3bc577def8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:14-alpine AS builder ENV NODE_OPTIONS=--max-old-space-size=8192 # Install build dependancies. -RUN apk --no-cache add git python3 +RUN apk --no-cache add git python3 build-base RUN npm install -g npm@8.0.0