Skip to content

Commit

Permalink
Merge pull request #26 from initia-labs/fix/docker-file-build-native-…
Browse files Browse the repository at this point in the history
…modules

fix: Update Dockerfile with required build dependencies
  • Loading branch information
Benzbeeb authored Feb 19, 2025
2 parents 516e87a + 830559a commit 62b5214
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 . .
Expand Down

0 comments on commit 62b5214

Please sign in to comment.