From 25687b6d13136c3694e2bc4234d0714a2e74920a Mon Sep 17 00:00:00 2001 From: Andrey Slotin Date: Wed, 6 Dec 2023 17:41:52 +0100 Subject: [PATCH] Switch to the grafana/k6 image The `loadimpact/k6` image is deprecated and will stop receive updates after Dec 31, 2023. The `grafana/k6` image is fully compatible and there are no other steps needed to migrate besides changing the image name. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 83d5422..90a7345 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -ldflags '-extldflags "-static"' -o /app/f FROM alpine:3.18 COPY --from=build /app/flagger-k6-webhook /usr/bin/flagger-k6-webhook -COPY --from=loadimpact/k6 /usr/bin/k6 /usr/bin/k6 +COPY --from=grafana/k6 /usr/bin/k6 /usr/bin/k6 ENTRYPOINT /usr/bin/flagger-k6-webhook -USER 65534 \ No newline at end of file +USER 65534