diff --git a/Dockerfile b/Dockerfile index 07821e2..cc45ae9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,10 @@ FROM node:alpine WORKDIR /usr/rapid-relayer COPY package.json . + +# Install build dependencies for native modules +RUN apk add --no-cache python3 make g++ + RUN npm install # && npm install typescript -g COPY . .