summaryrefslogtreecommitdiffstats
path: root/conductor/docker/reservation/Dockerfile
diff options
context:
space:
mode:
authorIkram Ikramullah <ikram@research.att.com>2018-02-14 17:43:36 -0500
committerIkram Ikramullah <ikram@research.att.com>2018-02-14 17:52:49 -0500
commit601bec029087f09f3a8579de16aaa5ec6aa14b14 (patch)
treeb5fe5bd7408c513bc7df0bc8b7a26ca202aa9b1d /conductor/docker/reservation/Dockerfile
parente761b422db53e8d81c875a3f0e7806fe942463cc (diff)
Dockerization Effort
Added files to run components of conductor in docker. There is a build script and a run script. Run script has instructions on how to run the containers. Issue-ID: OPTFRA-123 Change-Id: Id55a25b3c54e19728ca218e7d98e20af0630a383 Signed-off-by: Ikram Ikramullah <ikram@research.att.com>
Diffstat (limited to 'conductor/docker/reservation/Dockerfile')
-rwxr-xr-xconductor/docker/reservation/Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/conductor/docker/reservation/Dockerfile b/conductor/docker/reservation/Dockerfile
new file mode 100755
index 0000000..cc738f3
--- /dev/null
+++ b/conductor/docker/reservation/Dockerfile
@@ -0,0 +1,11 @@
+FROM python:2.7
+RUN apt-get update
+RUN apt-get --assume-yes install python-setuptools
+RUN virtualenv ../venv
+RUN git clone https://fi241c@codecloud.web.att.com/scm/st_cloudqos/conductor.git
+WORKDIR ./conductor
+RUN pip install .
+RUN pwd
+
+RUN echo "Starting conductor-reservation"
+CMD ["python","/usr/local/bin/conductor-reservation", "--config-file=/usr/local/bin/conductor.conf"]