From 161624c39c54d6cac539ed11a641e9d2b8c6248c Mon Sep 17 00:00:00 2001 From: "Kajur, Harish (vk250x)" Date: Thu, 11 Apr 2019 12:13:59 -0400 Subject: Add haproxy Dockerfile related files Issue-ID: AAI-2235 Change-Id: If4d4439aa0e61e0f00ae4e2b6f1dcfdf50a79dff Signed-off-by: Kajur, Harish (vk250x) --- Dockerfiles/haproxy/Dockerfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Dockerfiles/haproxy/Dockerfile (limited to 'Dockerfiles/haproxy/Dockerfile') 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 -- cgit 1.2.3-korg