summaryrefslogtreecommitdiff
path: root/vendor/github.com/testcontainers/testcontainers-go/generic.go
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-08 13:11:59 -0600
committermo khan <mo@mokhan.ca>2025-07-21 15:20:39 -0600
commit2ddcc34ca455973598f5693d64103deea41d8d79 (patch)
tree0b3a42aa97bca93c15c67a679c903611e5ab60c1 /vendor/github.com/testcontainers/testcontainers-go/generic.go
parent16c27cd885b9c0d1241dfead3120643f0e8c556c (diff)
chore: use minit to start processes from Procfile
Diffstat (limited to 'vendor/github.com/testcontainers/testcontainers-go/generic.go')
-rw-r--r--vendor/github.com/testcontainers/testcontainers-go/generic.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/vendor/github.com/testcontainers/testcontainers-go/generic.go b/vendor/github.com/testcontainers/testcontainers-go/generic.go
index 9663b03..dc5ee1c 100644
--- a/vendor/github.com/testcontainers/testcontainers-go/generic.go
+++ b/vendor/github.com/testcontainers/testcontainers-go/generic.go
@@ -4,6 +4,7 @@ import (
"context"
"errors"
"fmt"
+ "maps"
"strings"
"sync"
@@ -113,9 +114,7 @@ func GenericLabels() map[string]string {
// AddGenericLabels adds the generic labels to target.
func AddGenericLabels(target map[string]string) {
- for k, v := range GenericLabels() {
- target[k] = v
- }
+ maps.Copy(target, GenericLabels())
}
// Run is a convenience function that creates a new container and starts it.