10 lines
293 B
Plaintext
10 lines
293 B
Plaintext
FROM openresty/openresty:alpine-fat
|
|
|
|
RUN mkdir /var/log/nginx
|
|
RUN apk add --no-cache openssl-dev
|
|
RUN apk add --no-cache git
|
|
RUN apk add --no-cache gcc
|
|
RUN luarocks install lua-resty-openidc
|
|
|
|
ENTRYPOINT ["/usr/local/openresty/nginx/sbin/nginx", "-g", "daemon off;"]
|