From 98c96840f9f5eb3872e4551c7d2d0cd2dedba4f3 Mon Sep 17 00:00:00 2001 From: David A Klein <35087175+kleinhammer@users.noreply.github.com> Date: Sat, 16 Sep 2023 07:10:50 -0400 Subject: [PATCH] fix docker build by adding node-gyp (#486) Co-authored-by: David Klein --- 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