blob: cc738f30de396df2b868a0c5cf114f306734f9be (
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-reservation"
CMD ["python","/usr/local/bin/conductor-reservation", "--config-file=/usr/local/bin/conductor.conf"]
|