Closed micsjo closed 1 year ago
The Dockerfile pulls golang:1.17-alpine as the builder for k6.
golang:1.17-alpine
It references <...>net/netip which is only introduced in golang 1.18
Updating the Dockerfile to use a later image (ex golang:1.19-alpine) fixes the build issue.
golang:1.19-alpine
The Dockerfile pulls
golang:1.17-alpine
as the builder for k6.It references <...>net/netip which is only introduced in golang 1.18
Updating the Dockerfile to use a later image (ex
golang:1.19-alpine
) fixes the build issue.