From 28101779eef8a5cfd03f5ed4c3f09ca0278af203 Mon Sep 17 00:00:00 2001 From: Phoenix / Hotaru Date: Fri, 15 Jul 2022 16:09:55 +0100 Subject: [PATCH] Add packages for building node_modules with ARM64 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a3afaff..038de6e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:18.6-alpine AS base LABEL version="4.1.0" LABEL description="" -RUN apk --update --no-cache upgrade +RUN apk --update --no-cache upgrade && apk add g++ make python --no-cache WORKDIR /usr/src/app COPY ["package.json", "./"]