diff options
author | Kajur, Harish (vk250x) <vk250x@att.com> | 2019-04-11 12:13:59 -0400 |
---|---|---|
committer | Harish Venkata Kajur <vk250x@att.com> | 2019-04-11 12:23:20 -0400 |
commit | 161624c39c54d6cac539ed11a641e9d2b8c6248c (patch) | |
tree | de8c8837637a9151e01d7e90600299da91e07261 /Dockerfiles/haproxy/Dockerfile | |
parent | b246959cee2989220eff5d3e92028c685a201b67 (diff) |
Add haproxy Dockerfile related files
Issue-ID: AAI-2235
Change-Id: If4d4439aa0e61e0f00ae4e2b6f1dcfdf50a79dff
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
Diffstat (limited to 'Dockerfiles/haproxy/Dockerfile')
-rw-r--r-- | Dockerfiles/haproxy/Dockerfile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Dockerfiles/haproxy/Dockerfile b/Dockerfiles/haproxy/Dockerfile new file mode 100644 index 00000000..d771231e --- /dev/null +++ b/Dockerfiles/haproxy/Dockerfile @@ -0,0 +1,30 @@ +FROM haproxy:1.7 + +# Set up your corporate proxy if there is +ENV HTTP_PROXY "" +ENV HTTPS_PROXY "" +ENV http_proxy "" +ENV https_proxy "" + +ENV DEBIAN_FRONTEND=noninteractive + +RUN if [ ! -z ${HTTP_PROXY} ]; \ + then echo "Acquire::http::proxy \"${HTTP_PROXY}\";" >> /etc/apt/apt.conf; \ + fi && \ + if [ ! -z ${HTTP_PROXY} ]; \ + then echo "Acquire::https::proxy \"${HTTP_PROXY}\";" >> /etc/apt/apt.conf; \ + fi && \ + apt-get update && \ + apt-get -y install ca-certificates openssl curl && \ + rm -rf /var/lib/apt/lists/* + +RUN mkdir -p /etc/ssl/certs/ && mkdir -p /etc/ssl/private + +COPY aai.pem /etc/ssl/private/aai.pem +COPY docker-entrypoint.sh /docker-entrypoint.sh +COPY resolvers.conf /usr/local/etc/haproxy/resolvers.conf +COPY haproxy.cfg /usr/local/etc/haproxy/haproxy.cfg + +RUN chmod +x /docker-entrypoint.sh + +EXPOSE 8443 |