Renovate Bot
7276e85195
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
14 lines
293 B
Docker
14 lines
293 B
Docker
FROM openresty/openresty:1.21.4.1-buster@sha256:1613c0033c1fd69d04e49eb2bedc2538ebdee0ddc3de6620d27bcf9a04621846
|
|
|
|
COPY nginx.conf.template /
|
|
COPY entrypoint.sh /
|
|
|
|
ENV RESOLVER=1.1.1.1
|
|
|
|
EXPOSE 80
|
|
|
|
STOPSIGNAL SIGQUIT
|
|
|
|
ENTRYPOINT ["bash", "entrypoint.sh"]
|
|
|
|
CMD ["openresty", "-g", "daemon off;"]
|