blob: e6c4b1f59b8724d08dea602e071693adfa404d67 [file] [log] [blame]
Pamela Dragosh9bd4bf62017-03-30 12:46:08 -04001FROM onap/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 && \
Pamela Dragoshb0079c22017-03-08 21:48:28 -05008 add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://ftp.osuosl.org/pub/mariadb/repo/10.0/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