usbarmory / usbarmory-debian-base_image

USB armory Debian base image

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Image cannot be built: old golang version

jleni opened this issue · comments

The go version that is installed in the docker container is very old (go version go1.7.4 linux/amd64) and there is not support for go mod. For this reason armoryctl cannot be built and it is not possible to create an image.

I can confirm. Manually installing go 1.13 inside the container fixed the problem.

There is now a package for armoryctl, you can just apt-get update && apt-get install armoryctl. Please confirm and close.

The problem is that calling make inside the docker tries to compile it and then fails.. so it is not possible to build the debian image inside the container.
Installing a newer golang version in docker fixed it for me, so no worries, but I thought you might be interested to know.

Ah now I get it, will fix.