From 3217b487224714c2e59b8e3a9953d1468985d385 Mon Sep 17 00:00:00 2001 From: jachwe Date: Sat, 7 Oct 2023 00:09:14 +0200 Subject: [PATCH] fix: Update Dockerfile Added apk packages to allow node-gyp to build with python --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a538946e..f2f76af3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM node:lts-alpine3.16 as build WORKDIR /usr/src/app COPY . . +RUN apk add g++ make py3-pip RUN npm install -w=aas-server -w=aas-portal RUN node create-app-info.js RUN npm run build