diff options
Diffstat (limited to 'aai-common-docker/aai-haproxy-image/src/main/docker/Dockerfile')
-rw-r--r-- | aai-common-docker/aai-haproxy-image/src/main/docker/Dockerfile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/aai-common-docker/aai-haproxy-image/src/main/docker/Dockerfile b/aai-common-docker/aai-haproxy-image/src/main/docker/Dockerfile new file mode 100644 index 00000000..7bf9b20a --- /dev/null +++ b/aai-common-docker/aai-haproxy-image/src/main/docker/Dockerfile @@ -0,0 +1,25 @@ +FROM haproxy:1.7-alpine + +# Set up your corporate proxy if there is +ENV HTTP_PROXY "" +ENV HTTPS_PROXY "" +ENV http_proxy "" +ENV https_proxy "" + +RUN apk add --no-cache \ + ca-certificates \ + curl \ + openssl + +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 + +ENTRYPOINT [ "/docker-entrypoint.sh" ] +CMD [ "haproxy", "-f", "/usr/local/etc/haproxy/haproxy.cfg", "-f", "/usr/local/etc/haproxy/resolvers.conf" ] +EXPOSE 8443 |