diff --git a/test/integrations/node/express.Dockerfile b/test/integrations/node/express.Dockerfile index e58858ec5f..e8c6b05105 100644 --- a/test/integrations/node/express.Dockerfile +++ b/test/integrations/node/express.Dockerfile @@ -4,12 +4,12 @@ ADD packages/node /src/packages/node # Build Node SDK WORKDIR /src/packages/node -RUN npm ci --ignore-scripts +RUN npm i --ignore-scripts RUN npm run build # Install Express WORKDIR /src/packages/node/examples/express ADD packages/node/examples/express/package*.json ./ -RUN npm ci +RUN npm i CMD ["node", "index.js"] diff --git a/test/integrations/node/fastify.Dockerfile b/test/integrations/node/fastify.Dockerfile index b3da11960c..4c17fdaf14 100644 --- a/test/integrations/node/fastify.Dockerfile +++ b/test/integrations/node/fastify.Dockerfile @@ -4,12 +4,12 @@ ADD packages/node /src/packages/node # Build Node SDK WORKDIR /src/packages/node -RUN npm ci --ignore-scripts +RUN npm i --ignore-scripts RUN npm run build # Install Fastify WORKDIR /src/packages/node/examples/fastify ADD packages/node/examples/fastify/package*.json ./ -RUN npm ci +RUN npm i CMD ["node", "index.js"] diff --git a/test/integrations/node/hapi.Dockerfile b/test/integrations/node/hapi.Dockerfile index 12266e73d5..6024e99596 100644 --- a/test/integrations/node/hapi.Dockerfile +++ b/test/integrations/node/hapi.Dockerfile @@ -4,12 +4,12 @@ ADD packages/node /src/packages/node # Build Node SDK WORKDIR /src/packages/node -RUN npm ci --ignore-scripts +RUN npm i --ignore-scripts RUN npm run build # Install hapi WORKDIR /src/packages/node/examples/hapi ADD packages/node/examples/hapi/package*.json ./ -RUN npm ci +RUN npm i CMD ["node", "index.js"]