rkeplin / bible-go-api

Dockerized REST API for reading and searching the Bible
https://hub.docker.com/r/rkeplin/bible-go-api
GNU General Public License v3.0
31 stars 10 forks source link

make images throws error: cannot convert x (type []byte) to type *[32]byte #1

Open Caleb-Parks opened 7 months ago

Caleb-Parks commented 7 months ago

I'm part of a college capstone team trying to run this API on an Ubuntu server for part of our senior project. When running make images, we're getting the error 2.131 /go/src/filippo.io/edwards25519/scalar.go:166:53: cannot convert x (type []byte) to type *[32]byte. Is this a bug in this project or in edwards25519?

Screenshot 2024-02-15 150629

alfredayibonte commented 6 months ago

Hi! @Caleb-Parks, I solved this by upgrading the go version in the Dockerfile and adding go.mod and go.sum files. You can see the repo here

Caleb-Parks commented 6 months ago

Thanks! I'll take a look.