blob: 23ed1d012ed61208513089ba86bf1a19f965e6af [file] [log] [blame]
Mike Marchetti6930bc02017-05-31 16:33:02 -04001FROM ubuntu:16.04
2
3RUN apt-get update && apt-get -y install python \
4 libcurl4-gnutls-dev libgnutls-dev \
5 python-setuptools python-pip git python-pytest \
Mike Marchetti8343e3f2017-06-30 15:12:26 -04006 charm-tools sudo
7
8# allow users to sudo. This will allow packages to be installed
9# inside the container
10RUN echo "ALL ALL = NOPASSWD: ALL" > /etc/sudoers.d/user && \
11 chmod 0440 /etc/sudoers.d/user