mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
4a9ed76f32
Bumps haproxy from 2.2.3-alpine to 2.2.4-alpine. Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
9 lines
321 B
Docker
9 lines
321 B
Docker
FROM haproxy:2.2.4-alpine
|
|
|
|
RUN \
|
|
apk add --no-cache \
|
|
curl \
|
|
lua-json4 \
|
|
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 |