Fix bug in VIM fit constraint
[optf/has.git] / conductor / docker / Dockerfile
1 # -------------------------------------------------------------------------
2 #   Copyright (c) 2015-2017 AT&T Intellectual Property
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 #
16 # -------------------------------------------------------------------------
17
18 FROM python:2.7
19 ENV CON_ADDR "127.0.0.1"
20 ENV CON_PORT "8091"
21
22 EXPOSE 8091
23
24 RUN apt-get update && apt-get --assume-yes install python-setuptools && \
25 apt-get install -y unzip && \
26 apt-get install -y curl && \
27 apt-get install -y wget 
28
29 RUN git clone https://gerrit.onap.org/r/optf/has
30 RUN cd ./has/conductor/ && pip install -e .
31 COPY api_paste.ini /usr/local/bin/api_paste.ini