Building the snap on Docker

1 Like

I think this should be updated to mention that before running snapcraft from the container, apt update needs to be run, because as it is the snapcore/snapcraft docker image has out of date apt sources and as such snapcraft will fail to install/download packages when using apt because the sources/sites are out of date. So basically the command we should document for folks to run when using this docker image is:

docker run -v "$PWD":/build -w /build snapcore/snapcraft bash -c "apt update && snapcraft"
1 Like

Thanks for this. I’ve merged the details from this topic into Build on Docker, which is currently linked from the documentation menu.

1 Like