diff options
author | Ikram Ikramullah <ikram@research.att.com> | 2018-02-14 17:43:36 -0500 |
---|---|---|
committer | Ikram Ikramullah <ikram@research.att.com> | 2018-02-14 17:52:49 -0500 |
commit | 601bec029087f09f3a8579de16aaa5ec6aa14b14 (patch) | |
tree | b5fe5bd7408c513bc7df0bc8b7a26ca202aa9b1d /conductor/docker/reservation/Dockerfile | |
parent | e761b422db53e8d81c875a3f0e7806fe942463cc (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-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"] |