blob: 3057d14100f04dd1e2894818d2baf7b80c01ff81 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
|
FROM haproxy:2.4.27-alpine
# For building the image in a proxy environment if necessary
ARG HTTP_PROXY
ARG HTTPS_PROXY
ENV HTTP_PROXY ${HTTP_PROXY}
ENV HTTPS_PROXY ${HTTPS_PROXY}
ENV http_proxy ${HTTP_PROXY}
ENV https_proxy ${HTTPS_PROXY}
# Added to execute commands which required root permission
USER root
RUN apk add --no-cache \
ca-certificates \
curl \
bash \
socat \
openssl \
shadow \
util-linux && \
chown -R haproxy:haproxy /usr/local/etc/haproxy
RUN mkdir -p /etc/ssl/certs/ && mkdir -p /etc/ssl/private
COPY --chown=haproxy aai.pem /etc/ssl/private/aai.pem
COPY --chown=haproxy haproxy.cfg /usr/local/etc/haproxy/haproxy.cfg
# Changing group and group permission to allow haproxy user to execute sed comamnd ot change files
RUN chgrp haproxy /usr/local/etc/haproxy; \
chgrp haproxy /usr/local/etc/haproxy/haproxy.cfg
RUN chmod g+wx /usr/local/etc/haproxy; \
chmod g+w /usr/local/etc/haproxy/haproxy.cfg
# Reverting to haproxy use to not run the pod with root permissions
USER haproxy
ENTRYPOINT [ "haproxy" ]
CMD [ "-W", "-db", "-f", "/usr/local/etc/haproxy/haproxy.cfg", "-f", "/usr/local/etc/haproxy/resolvers.conf" ]
EXPOSE 8443
|