From 0ee2d49a5129a1dda3e05719cb57ec9f0fad0e6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20M=C3=B6hring?= Date: Thu, 30 Mar 2023 13:56:50 +0200 Subject: [PATCH] updated to golang:1.19-alpine -> didn't build with 1.17 --- k6-configuration-runner/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k6-configuration-runner/Dockerfile b/k6-configuration-runner/Dockerfile index fce456f..55c21c8 100644 --- a/k6-configuration-runner/Dockerfile +++ b/k6-configuration-runner/Dockerfile @@ -1,5 +1,5 @@ # Copied xk6-Dockerfile from: https://github.com/grafana/xk6-output-influxdb/blob/main/Dockerfile -FROM golang:1.17-alpine as k6 +FROM golang:1.19-alpine as k6 WORKDIR $GOPATH/src/go.k6.io/k6 ADD . . RUN apk --no-cache add git && go install go.k6.io/xk6/cmd/xk6@latest