blob: f1ad2433bdc0a050e349fb38f1d65978c898144e [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 \
Pamela Dragosh6d4e15f2017-03-08 13:58:22 -05006 apt-get install -y apt-transport-https && \
Pamela Dragoshd1728dc2017-02-14 19:57:17 -05007 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' && \
Pamela Dragosh6d4e15f2017-03-08 13:58:22 -05009 apt-get clean && \
Pamela Dragoshd1728dc2017-02-14 19:57:17 -050010 apt-get update && \
11 apt-get install -y mariadb-client
12
13