We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 770c181 commit 57b0c0cCopy full SHA for 57b0c0c
Dockerfile
@@ -1,6 +1,6 @@
1
# syntax=docker/dockerfile:1
2
3
-ARG ALPINE_VERSION=3.19
+ARG ALPINE_VERSION=3.20
4
5
FROM alpine:${ALPINE_VERSION} AS nginx
6
@@ -37,6 +37,7 @@ RUN nginx_opt=$(nginx -V 2>&1 | tail -1 | sed -e "s/configure arguments://" -e "
37
&& ./configure \
38
${nginx_opt} \
39
--add-dynamic-module=../ \
40
+ --with-cc-opt='-DNGX_HTTP_HEADERS' \
41
&& make \
42
&& mkdir -p /usr/lib/nginx/modules \
43
&& cp objs/ngx_http_auth_jwt_module.so /usr/lib/nginx/modules/ \
example/Dockerfile
FROM ghcr.io/kjdev/nginx-auth-jwt AS auth-jwt
FROM ghcr.io/kjdev/nginx-keyval AS keyval
0 commit comments