Hey James,
Could you show the docker run command, which you invoke to enter a container?
I use docker to build my application as well, so I just do `docker container
run --rm -ti --volume $PWD:/gocode/src/app --workdir /gocode/src/app
go build`. Doing so with container reusage or not, I
haven
I have a statically built go binary with cgo deps (wellington/go-libsass)
which I'm trying to speed up the rebuild time for.
This is run within a docker image because so the statically compiled binary
will run as it's own base image on docker.
The docker image the build is run within is:
FROM g