# nginx + njs (ngx_http_js_module) for the A3 cert→Host binding integration test. # The official nginx Debian image ships the nginx.org apt repo, so the njs dynamic module installs at # the exact matching version. This mirrors the VPS prereq: `load_module modules/ngx_http_js_module.so`. FROM nginx:1.27 RUN apt-get update \ && apt-get install -y --no-install-recommends nginx-module-njs \ && rm -rf /var/lib/apt/lists/*