restructure into ci-pipelines

Change-Id: I8fcec31e9295ad7876331da49c3832f3b4863f44
Signed-off-by: Mike Marchetti <mmarchetti@sandvine.com>
diff --git a/systest/Dockerfile b/systest/Dockerfile
index ec30486..23ed1d0 100644
--- a/systest/Dockerfile
+++ b/systest/Dockerfile
@@ -3,4 +3,9 @@
 RUN apt-get update && apt-get -y install python \
     libcurl4-gnutls-dev libgnutls-dev \
     python-setuptools python-pip git python-pytest \
-    charm-tools
+    charm-tools sudo
+
+# allow users to sudo.  This will allow packages to be installed
+# inside the container
+RUN echo "ALL ALL = NOPASSWD: ALL" > /etc/sudoers.d/user && \
+    chmod 0440 /etc/sudoers.d/user