summaryrefslogtreecommitdiffstats
path: root/ansible-server/src/main/Dockerfile
blob: e0abb04a0a7ed0a77cb7b514b3345d5de8b2d21d (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
26
27
28
29
FROM alpine:3.8

LABEL maintainer="SDN-C Team (sdnc@lists.openecomp.org)"
ARG PIP_TAG=18.0

WORKDIR /opt/

COPY ansible-server/requirements.txt ansible-server/requirements.txt

RUN apk add --no-cache py2-pip \
                       python2 &&\
    apk add --no-cache --virtual .build-deps build-base \
                                             libffi-dev \
                                             openssl-dev \
                                             python2-dev &&\
    pip install --no-cache-dir --upgrade pip==$PIP_TAG && \
    pip install --no-cache-dir -r ansible-server/requirements.txt &&\
    apk del .build-deps

COPY ansible-server ansible-server
COPY configuration/ansible.cfg /etc/ansible/ansible.cfg

WORKDIR /opt/ansible-server

RUN mkdir /opt/onap ; ln -s /opt/ansible-server /opt/onap/ccsdk

EXPOSE 8000

ENTRYPOINT ["python2", "RestServer.py"]