Hi All,
I've been building snap packages within a docker container successfully.
Up to now all the containers have been built with devmode, but I would
now like to build one with classic confinement (for a development
application).
Building the package fails because the core snap isn't installed,
Hi Alistair,
We had a similar issue in our project, we found this:
docker run -it -v $PWD:/root/snap -w /root/snap -e SNAPCRAFT_SETUP_CORE=1
snapcraft/xenial-amd64 /bin/bash
Where, when using that flag, the core snap will already be installed.
Thanks,
Marco Ceppi
On Wed, Mar 22, 2017 at 5:03 A
Hi Marco,
On 22 March 2017 at 13:01, Marco Ceppi wrote:
> Hi Alistair,
>
> We had a similar issue in our project, we found this:
>
> docker run -it -v $PWD:/root/snap -w /root/snap -e SNAPCRAFT_SETUP_CORE=1
> snapcraft/xenial-amd64 /bin/bash
>
> Where, when using that flag, the core snap will alr