Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Security upgrade nginx from 1.25.2-alpine to 1.25.4-alpine #35

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/nginx-reverse-proxy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ARG NGINX_CONF=/etc/nginx/nginx.conf
ARG LOCAL_DIR=/usr/local

FROM nginx:1.25.2-alpine as builder
FROM nginx:1.25.4-alpine as builder
ARG NGINX_CONF
ARG LOCAL_DIR

Expand All @@ -18,7 +18,7 @@ RUN apk update && apk add --no-cache libxml2=2.9.14-r2 && \
-e "s/server tplinkwifi.net/server test.tplinkwifi.net/g" -i ${NGINX_CONF} && \
nginx -t

FROM nginx:1.25.2-alpine as production
FROM nginx:1.25.4-alpine as production
ARG DOMAIN_NAME
ARG DOMAIN_EMAIL
ARG NGINX_CONF
Expand Down