From 08af5b8d322ec31c16b9ef757baadd3c8d2db00e Mon Sep 17 00:00:00 2001 From: KingPin Date: Tue, 9 Jan 2024 11:05:09 -0500 Subject: [PATCH] allow docker build on arm --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index eb0879c..9668844 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,8 @@ RUN npm install -g pnpm@8.3.1 COPY . . +RUN apk add --update --no-cache python3 g++ make py3-pip + RUN pnpm install --frozen-lockfile RUN pnpm build