alexballas / go2tv

Cast media files to UPnP/DLNA Media Renderers and Smart TVs.
MIT License
498 stars 49 forks source link

docker build fails - missing net/netip #89

Open fergald opened 5 days ago

fergald commented 5 days ago
/go/pkg/mod/github.com/fredbi/uri@v1.1.0/uri.go:19:2: package net/netip is not in GOROOT (/usr/local/go/src/net/netip)
make: *** [Makefile:5: build] Error 1

netip does not show in the list of packages that get downloaded by docker.

alexballas commented 5 days ago

Hello @fergald , Thanks for raising this. It seems that I forgot to update the Go docker image with the latest versions that introduced net/netip. You can fix this by replacing the first line of the Dockerfile with FROM golang:1.23 until I push a fix.

alexballas commented 5 days ago

https://github.com/alexballas/go2tv/commit/ee1b6c8f702ac4f0a94c6eee3d620c101e3e9725

fergald commented 4 days ago

Thanks. Built for me.