update Dockerfile to onap
[policy/docker.git] / policy-base / Dockerfile
1 FROM onap/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] http://ftp.osuosl.org/pub/mariadb/repo/10.0/ubuntu trusty main' && \
9         apt-get clean && \
10         apt-get update && \
11         apt-get install -y mariadb-client
12         
13