diff options
Diffstat (limited to 'conductor/docker/reservation')
-rwxr-xr-x | conductor/docker/reservation/Dockerfile | 11 |
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"] |