~dricottone/container-images

ref: a9f674c54e2eff2cc555c76c84f613abff90b010 container-images/haproxy/Dockerfile.syslog -rw-r--r-- 328 bytes
a9f674c5Dominic Ricottone Buildkit progress a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
FROM docker.io/library/haproxy:alpine

COPY haproxy.syslog.cfg /usr/local/etc/haproxy/haproxy.cfg

CMD ["haproxy", "-f", "/usr/local/etc/haproxy/haproxy.cfg", "-f", "/usr/local/etc/haproxy.d"]

USER root
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
RUN apk add --no-cache su-exec