Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 1 | FROM ubuntu:16.04 |
2 | |||||
3 | ENV no_proxy "localhost,127.0.0.1,.cluster.local,$KUBERNETES_SERVICE_HOST" | ||||
4 | # Setup Corporate proxy | ||||
barak | 131c2a4 | 2017-06-27 02:45:02 +0300 | [diff] [blame^] | 5 | ENV https_proxy ${HTTP_PROXY} |
6 | ENV http_proxy ${HTTPS_PROXY} | ||||
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 7 | |
8 | RUN apt-get update | ||||
9 | RUN apt-get install -y mariadb-client-10.0 | ||||
10 | |||||
11 | VOLUME /portal-mysql |