From e03eb706f196aecfa8159181f682df07d73edf40 Mon Sep 17 00:00:00 2001 From: Darren Yong Date: Thu, 4 Jun 2026 21:14:47 -0700 Subject: [PATCH] test: upgrade node for integration tests --- integrations/c.Dockerfile | 1 + integrations/csharp.Dockerfile | 2 +- integrations/go.Dockerfile | 1 + integrations/node.Dockerfile | 2 +- integrations/php.Dockerfile | 1 + integrations/python.Dockerfile | 1 + integrations/shell.Dockerfile | 1 + 7 files changed, 7 insertions(+), 2 deletions(-) diff --git a/integrations/c.Dockerfile b/integrations/c.Dockerfile index 6aaac1c52..9e0195558 100644 --- a/integrations/c.Dockerfile +++ b/integrations/c.Dockerfile @@ -1,3 +1,4 @@ +FROM node:22-alpine AS node FROM alpine:3.18 COPY integrations/https-cert/rootCA.pem /root/integration-test.pem diff --git a/integrations/csharp.Dockerfile b/integrations/csharp.Dockerfile index c81b9ced0..07ba5e2d3 100644 --- a/integrations/csharp.Dockerfile +++ b/integrations/csharp.Dockerfile @@ -1,4 +1,4 @@ -FROM node:20-alpine3.18 AS node +FROM node:22-alpine AS node FROM mcr.microsoft.com/dotnet/sdk:7.0-alpine3.18 COPY integrations/https-cert/rootCA.pem /root/integration-test.pem diff --git a/integrations/go.Dockerfile b/integrations/go.Dockerfile index 721852b9f..5b4318138 100644 --- a/integrations/go.Dockerfile +++ b/integrations/go.Dockerfile @@ -1,3 +1,4 @@ +FROM node:22-alpine AS node FROM golang:1.20.5-alpine3.18 COPY integrations/https-cert/rootCA.pem /root/integration-test.pem diff --git a/integrations/node.Dockerfile b/integrations/node.Dockerfile index f599f3082..db599478b 100755 --- a/integrations/node.Dockerfile +++ b/integrations/node.Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine +FROM node:22-alpine COPY integrations/https-cert/rootCA.pem /root/integration-test.pem diff --git a/integrations/php.Dockerfile b/integrations/php.Dockerfile index 1a90f0605..01f9c7863 100644 --- a/integrations/php.Dockerfile +++ b/integrations/php.Dockerfile @@ -4,6 +4,7 @@ WORKDIR /composer/ # https://packagist.org/packages/guzzlehttp/guzzle RUN composer require guzzlehttp/guzzle +FROM node:22-alpine AS node FROM alpine:3.18 COPY integrations/https-cert/rootCA.pem /root/integration-test.pem diff --git a/integrations/python.Dockerfile b/integrations/python.Dockerfile index 864965702..869a80410 100644 --- a/integrations/python.Dockerfile +++ b/integrations/python.Dockerfile @@ -1,3 +1,4 @@ +FROM node:22-alpine AS node FROM alpine:3.18 COPY integrations/https-cert/rootCA.pem /root/integration-test.pem diff --git a/integrations/shell.Dockerfile b/integrations/shell.Dockerfile index 0d6297b96..17d5940c6 100644 --- a/integrations/shell.Dockerfile +++ b/integrations/shell.Dockerfile @@ -1,3 +1,4 @@ +FROM node:22-alpine AS node FROM alpine:3.18 COPY integrations/https-cert/rootCA.pem /root/integration-test.pem