diff options
Diffstat (limited to 'ansible-server/src/main/docker/Dockerfile')
-rw-r--r-- | ansible-server/src/main/docker/Dockerfile | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/ansible-server/src/main/docker/Dockerfile b/ansible-server/src/main/docker/Dockerfile index bebd8e00..d879146e 100644 --- a/ansible-server/src/main/docker/Dockerfile +++ b/ansible-server/src/main/docker/Dockerfile @@ -1,21 +1,14 @@ -# Base ubuntu with added packages needed for open ecomp -FROM onap/ccsdk-ubuntu-image:${project.docker.latestfulltag.version} - +FROM alpine:3.8.4 LABEL maintainer="SDN-C Team (sdnc@lists.openecomp.org)" #ENV http_proxy=http://anonymous:password@one.proxy.att.com:8080 #ENV https_proxy=http://anonymous:password@one.proxy.att.com:8080 -##Vim -RUN apt-get update -RUN apt-get -y install apt-file -RUN apt-file update -RUN apt-get -y install vim - -##Python: -RUN apt-get -y install python2.7 -RUN apt-get -y install python-pip - +## add more pkgs +RUN apk update +RUN apk add vim +RUN apk add curl +RUN apk add ansible # copy files needed |