Skip to content

Commit

Permalink
ci: try npm i for everything
Browse files Browse the repository at this point in the history
  • Loading branch information
kanadgupta committed Jan 8, 2024
1 parent b1c92be commit 39bd03e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/integrations/node/express.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
4 changes: 2 additions & 2 deletions test/integrations/node/fastify.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
4 changes: 2 additions & 2 deletions test/integrations/node/hapi.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit 39bd03e

Please sign in to comment.