go get fails with official golang docker image
avishayp opened this issue · 2 comments
avishayp commented
docker run --rm golang bash -c 'go version && go get -v github.com/cube2222/jql'
go version go1.13.5 linux/amd64
... // lots of things
github.com/alecthomas/chroma/lexers
github.com/tj/go-termd
# github.com/tj/go-termd
src/github.com/tj/go-termd/termd.go:21:11: *blackfriday.Markdown is not a type
cube2222 commented
Fixed it for now by removing the terminal markdown rendering using https://github.com/tj/go-termd as it has some issues with dependency versions. Thanks for the issue! It works for me now in the official docker golang image.
avishayp commented
Confirmed, thanks for the quick fix!