diff options
Diffstat (limited to 'conductor/docker/reservation/Dockerfile')
-rwxr-xr-x | conductor/docker/reservation/Dockerfile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/conductor/docker/reservation/Dockerfile b/conductor/docker/reservation/Dockerfile index 2402f1d..323f15d 100755 --- a/conductor/docker/reservation/Dockerfile +++ b/conductor/docker/reservation/Dockerfile @@ -18,10 +18,9 @@ FROM python:2.7 RUN apt-get update RUN apt-get --assume-yes install python-setuptools -RUN virtualenv ../venv RUN git clone https://gerrit.onap.org/r/optf/has -WORKDIR ./conductor -RUN pip install . +WORKDIR ./has/conductor/ +RUN pip install -e . RUN pwd RUN echo "Starting conductor-reservation" CMD ["python","/usr/local/bin/conductor-reservation", "--config-file=/usr/local/bin/conductor.conf"] |