Initial OpenECOMP policy/docker commit
[policy/docker.git] / policy-base / Dockerfile
1 FROM ecomp-nexus:51220/policy/policy-os
2
3
4 # install MariaDB client
5 RUN \
6         apt-get install -y apt-transport-https && \
7         apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db && \
8         add-apt-repository 'deb [arch=amd64,i386,ppc64el] https://mirrors.evowise.com/mariadb/repo/10.1/ubuntu trusty main' && \
9         apt-get update && \
10         apt-get install -y mariadb-client
11         
12