blob: b6be90b247179d3a4f2ca784998f675be89f1a9c [file] [log] [blame]
Mandeep Khindad6ea9872017-06-24 11:49:37 -04001from ubuntu:16.04
2
Mandeep Khindadc2dc862017-09-08 05:20:30 +00003ENV no_proxy "localhost,127.0.0.1,.cluster.local,$KUBERNETES_SERVICE_HOST"
4# Setup Corporate proxy
5ENV https_proxy ${HTTPS_PROXY}
6ENV http_proxy ${HTTP_PROXY}
7
8# Additional packages
9RUN apt-get update
10RUN apt-get install -y openssl vim-common
Mandeep Khindad6ea9872017-06-24 11:49:37 -040011RUN mkdir -p /opt/config/src/
Mandeep Khindad6ea9872017-06-24 11:49:37 -040012
13COPY onap-cfg.tar.gz /tmp/
14RUN tar -zxvf /tmp/onap-cfg.tar.gz -C /opt/config/src/
15COPY config-init.sh /root/config-init.sh
16RUN chmod a+x /root/config-init.sh
17ENTRYPOINT /root/config-init.sh