blob: dc2efee3c006ebaecda820c852d18994bb03d1b4 (
plain)
1
2
3
4
5
6
7
8
9
10
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-controller"
CMD ["python","/usr/local/bin/conductor-controller", "--config-file=/usr/local/bin/conductor.conf"]
|