From 6f28cf02c5b03569189d5fb39e34eb1cb13b8058 Mon Sep 17 00:00:00 2001 From: noctarius aka Christoph Engelbert Date: Wed, 29 Nov 2023 16:08:13 +0000 Subject: [PATCH] Bumped localstack docker image to 3.0.1 --- testsupport/containers/localstack.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testsupport/containers/localstack.go b/testsupport/containers/localstack.go index 2ab83119..598b043c 100644 --- a/testsupport/containers/localstack.go +++ b/testsupport/containers/localstack.go @@ -20,6 +20,7 @@ package containers import ( "context" "fmt" + "github.com/testcontainers/testcontainers-go" "github.com/testcontainers/testcontainers-go/modules/localstack" ) @@ -33,7 +34,8 @@ func setupLocalStack( req.Env["EAGER_SERVICE_LOADING"] = "1" }) - container, err := localstack.RunContainer(context.Background(), config, customizer) + container, err := localstack.RunContainer(context.Background(), + config, customizer, testcontainers.WithImage("localstack/localstack:3.0.1")) if err != nil { return nil, err }