diff options
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 |