From b5de531dae266ed59287cb731ea8181b5aee7272 Mon Sep 17 00:00:00 2001 From: Nick Caradonna Date: Mon, 5 Jan 2026 18:47:11 -0500 Subject: [PATCH] try to pin rpc-websockets version in dockerfile --- Dockerfile | 2 +- esbuild.config.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6aa03d9..db035ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN yarn && yarn build FROM public.ecr.aws/docker/library/node:22-alpine RUN apk add python3 make g++ --virtual .build &&\ - npm install -C /lib bigint-buffer @triton-one/yellowstone-grpc@1.3.0 helius-laserstream@0.1.8 rpc-websockets &&\ + npm install -C /lib bigint-buffer @triton-one/yellowstone-grpc@1.3.0 helius-laserstream@0.1.8 rpc-websockets@7.5.1 &&\ apk del .build COPY --from=builder /app/lib/ ./lib/ diff --git a/esbuild.config.js b/esbuild.config.js index 8132a55..a62a12e 100644 --- a/esbuild.config.js +++ b/esbuild.config.js @@ -14,7 +14,9 @@ const commonConfig = { external: [ 'bigint-buffer', '@triton-one/yellowstone-grpc', - 'helius-laserstream' + 'helius-laserstream', + 'rpc-websockets', + 'rpc-websockets/*' ] };