blob: 2d46aba84745f265ccba669d396f053512475e19 [file] [log] [blame]
Pamela Dragosh95ed4602017-02-20 10:37:15 -05001FROM openecomp/policy/policy-os
Pamela Dragoshd1728dc2017-02-14 19:57:17 -05002
3
4# install MariaDB client
5RUN \
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