From 4856d1b29d8b1701094edbe904aa141b17ae88cb Mon Sep 17 00:00:00 2001 From: David Klein Date: Sat, 15 Jul 2023 23:43:01 -0400 Subject: [PATCH] fix docker build by adding node-gyp --- containers/wetty/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/containers/wetty/Dockerfile b/containers/wetty/Dockerfile index 3923f581..e122f62a 100644 --- a/containers/wetty/Dockerfile +++ b/containers/wetty/Dockerfile @@ -2,6 +2,7 @@ FROM node:current-alpine as builder RUN apk add -U build-base python3 WORKDIR /usr/src/app COPY . /usr/src/app +RUN yarn global add node-gyp RUN yarn install RUN yarn build