summaryrefslogtreecommitdiffstats
path: root/ocata/vagrant/test/Dockerfile
blob: 2d9eda54d8c3c16cc08eb6c6b69e32a1430ee421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM python:2

ENV MSB_ADDR "127.0.0.1"
ENV MSB_PORT "80"
ENV AAI_ADDR "aai.api.simpledemo.openecomp.org"
ENV AAI_PORT "8443"
ENV AAI_SCHEMA_VERSION "v11"
ENV AAI_USERNAME "AAI"
ENV AAI_PASSWORD "AAI"

EXPOSE 9006

COPY multicloud-openstack-ocata.zip /opt
RUN apt-get update && \
    apt-get install -y vim memcached unzip && \
    cd /opt/ && \
    unzip -q -o -B multicloud-openstack-ocata.zip && \
    chmod +x /opt/ocata/*.sh && \
    rm -f multicloud-openstack-ocata.zip && \
    pip install -r /opt/ocata/requirements.txt

ADD extsys.py /opt/ocata/lib/newton/newton/pub/msapi/extsys.py

WORKDIR /opt/ocata
CMD /bin/sh -c /opt/ocata/run.sh