Permalink
...
Checking mergeability…
Don’t worry, you can still create the pull request.
Comparing changes
Open a pull request
- 9 commits
- 2 files changed
- 0 commit comments
- 4 contributors
Unified
Split
Showing
with
4 additions
and 1 deletion.
- +1 −1 Dockerfile
- +3 −0 charmbox-setup.sh
View
2
Dockerfile
| @@ -1,4 +1,4 @@ | ||
| -FROM jujusolutions/jujubox:latest | ||
| +FROM jujusolutions/jujubox:devel | ||
| MAINTAINER Charles Butler <charles.butler@canonical.com> | ||
| ARG JUJU_USER=ubuntu | ||
View
3
charmbox-setup.sh
| @@ -20,6 +20,9 @@ sudo apt-get install -qy \ | ||
| rsync \ | ||
| unzip | ||
| +# Latest charm deb is in ppa:juju/stable, but our parent box (jujubox:devel) | ||
| +# only includes ppa:juju/devel. Add the stable ppa and install charm. | ||
| +sudo add-apt-repository -u -y ppa:juju/stable | ||
| sudo apt install --no-install-recommends charm | ||
| sudo pip install --upgrade pip six | ||