From 33657ec5547bfce932b9ed94c593fa7e569aa321 Mon Sep 17 00:00:00 2001 From: Daniel Mil <84205762+mildaniel@users.noreply.github.com> Date: Mon, 18 Sep 2023 14:51:20 -0700 Subject: [PATCH] Pin Docker emulation image version of go1.x in build image (#5950) --- .../hello_world/Dockerfile | 2 +- .../hello_world/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/testdata/buildcmd/terraform/image_based_lambda_functions_local_backend/hello_world/Dockerfile b/tests/integration/testdata/buildcmd/terraform/image_based_lambda_functions_local_backend/hello_world/Dockerfile index b568a899c22..cbbd64d896f 100644 --- a/tests/integration/testdata/buildcmd/terraform/image_based_lambda_functions_local_backend/hello_world/Dockerfile +++ b/tests/integration/testdata/buildcmd/terraform/image_based_lambda_functions_local_backend/hello_world/Dockerfile @@ -7,7 +7,7 @@ COPY go.mod go.sum main.go ./ RUN go build -o ../bin -FROM public.ecr.aws/lambda/go:1 +FROM public.ecr.aws/lambda/go:1.2023.08.02.10 COPY --from=build-image /go/bin/ /var/task/ diff --git a/tests/integration/testdata/buildcmd/terraform/image_based_lambda_functions_s3_backend/hello_world/Dockerfile b/tests/integration/testdata/buildcmd/terraform/image_based_lambda_functions_s3_backend/hello_world/Dockerfile index b568a899c22..cbbd64d896f 100644 --- a/tests/integration/testdata/buildcmd/terraform/image_based_lambda_functions_s3_backend/hello_world/Dockerfile +++ b/tests/integration/testdata/buildcmd/terraform/image_based_lambda_functions_s3_backend/hello_world/Dockerfile @@ -7,7 +7,7 @@ COPY go.mod go.sum main.go ./ RUN go build -o ../bin -FROM public.ecr.aws/lambda/go:1 +FROM public.ecr.aws/lambda/go:1.2023.08.02.10 COPY --from=build-image /go/bin/ /var/task/