From eb07aee742a600894500f337116bfb03577cd2ac Mon Sep 17 00:00:00 2001 From: taco Date: Mon, 18 May 2026 02:08:28 -0600 Subject: [PATCH] Revert Dockerfile changes --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c6c38f5..b20c512 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN git submodule update --init --recursive RUN hugo # Stage 2 -FROM binbashing/owasp-crs-ngxblocker:nginx-alpine +FROM nginx:1.25-alpine # Set workdir to the NGINX default dir. WORKDIR /usr/share/nginx/html @@ -35,5 +35,5 @@ WORKDIR /usr/share/nginx/html # Copy HTML from previous build into the Workdir. COPY --from=build /opt/HugoApp/public . -# Expose port 8080 -EXPOSE 8080/tcp +# Expose port 80 +EXPOSE 80/tcp