alpine build, implement to follow VNF anisble Req
[ccsdk/distribution.git] / ansible-server / src / main / docker / Dockerfile
1 # Base ubuntu with added packages needed for open ecomp
2 FROM onap/ccsdk-alpine-image:${ccsdk.distribution.version}
3
4 LABEL maintainer="SDN-C Team (sdnc@lists.openecomp.org)"
5
6 #ENV http_proxy=http://anonymous:password@one.proxy.att.com:8080
7 #ENV https_proxy=http://anonymous:password@one.proxy.att.com:8080
8
9 ## add more pkgs
10 RUN apk update
11 RUN apk add vim
12 RUN apk add curl
13 RUN apk add ansible
14
15
16 # copy files needed
17 COPY opt /opt/
18
19 WORKDIR /opt/onap/ccsdk
20
21 #ENTRYPOINT exec startAnsibleServer.sh
22 #CMD ["/bin/bash"]
23 EXPOSE 8000
24