authelia/internal/suites/example/compose/haproxy/Dockerfile

9 lines
325 B
Docker

FROM haproxy:2.2.2-alpine
RUN \
apk add --no-cache \
curl \
lua5.3-socket \
openssl && \
openssl req -new -newkey rsa:4096 -days 365 -nodes -x509 -subj "/C=AU/ST=Victoria/L=Melbourne/O=Authelia/CN=*.example.com" -keyout haproxy.key -out haproxy.crt && \
cat haproxy.key haproxy.crt > /usr/local/etc/haproxy/haproxy.pem