From f7a94a2328ff8e96da87e34fd822869e2f376d1f Mon Sep 17 00:00:00 2001 From: Alex Potsides Date: Fri, 19 Jul 2024 17:34:59 +0200 Subject: [PATCH] chore: pin node version in transport interop tests (#2629) There's a regression in the latest node that causes npm 10.7.0 to fail to install so pin to LTS --- interop/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interop/Dockerfile b/interop/Dockerfile index de4e131fcc..225c55b653 100644 --- a/interop/Dockerfile +++ b/interop/Dockerfile @@ -1,6 +1,6 @@ # Here because we want to fetch the node_modules within docker so that it's # installed on the same platform the test is run. Otherwise tools like `esbuild` will fail to run -FROM node:22-bullseye-slim +FROM node:lts WORKDIR /app