blob: a96c364075e583c2fb2abcb2188d0b5f3a450c1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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 \
shadow \
util-linux && \
groupadd haproxy -g 1000 && \
adduser -u 1000 -S -D -G haproxy -s /bin/bash haproxy
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
|