-
-
Save whitmo/796a280631be4c931f98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.04 | |
RUN apt-get update -qy | |
RUN apt-get install -qy software-properties-common | |
RUN apt-add-repository ppa:juju/stable | |
RUN apt-get install -qy lxc iptables | |
RUN apt-get -qy install juju-core juju-quickstart juju-deployer tmux charm-tools juju-local openssh-client | |
RUN apt-get install -qy python-pip git | |
RUN pip install git+git://github.com/juju-solutions/bundletester.git | |
RUN pip install blessings | |
RUN useradd ubuntu | |
RUN echo "ubuntu ALL=(ALL) NOPASSWD: ALL" >/etc/sudoers.d/ubuntu | |
WORKDIR /home/ubuntu | |
ENV HOME /home/ubuntu | |
USER ubuntu | |
ENV JUJU_HOME /home/ubuntu/.juju |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment