Pamela Dragosh | 95ed460 | 2017-02-20 10:37:15 -0500 | [diff] [blame] | 1 | FROM openecomp/policy/policy-os |
Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 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 | |