summaryrefslogtreecommitdiffstats
path: root/conductor/docker/solver/Dockerfile
blob: c482a7d764758752c49f2765bde87fa894cea2d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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-solver"
CMD ["python","/usr/local/bin/conductor-solver", "--config-file=/usr/local/bin/conductor.conf"]