9 lines
No EOL
213 B
Docker
9 lines
No EOL
213 B
Docker
FROM haproxy:1.8-alpine
|
|
|
|
RUN apk add --no-cache bash
|
|
|
|
COPY entrypoint.sh /
|
|
COPY assets/errors-custom/* /etc/haproxy/errors-custom/
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|
|
CMD ["haproxy", "-f", "/etc/haproxy/haproxy.cfg"] |