Skip to content

Commit

Permalink
Bump nginx from 1.25.4-alpine to 1.25.5-alpine in /src
Browse files Browse the repository at this point in the history
Bumps nginx from 1.25.4-alpine to 1.25.5-alpine.

Also add PIP_BREAK_SYSTEM_PACKAGES argument during installation.

---
updated-dependencies:
- dependency-name: nginx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and JonasAlfredsson committed Apr 24, 2024
1 parent 83d2e19 commit c59e5a6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.25.4
FROM nginx:1.26.0
LABEL maintainer="Jonas Alfredsson <[email protected]>"

ENV CERTBOT_DNS_AUTHENTICATORS \
Expand Down
7 changes: 6 additions & 1 deletion src/Dockerfile-alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.25.4-alpine
FROM nginx:1.26.0-alpine
LABEL maintainer="Jonas Alfredsson <[email protected]>"

ENV CERTBOT_DNS_AUTHENTICATORS \
Expand All @@ -19,6 +19,11 @@ ENV CERTBOT_DNS_AUTHENTICATORS \
ionos \
bunny

# Needed in order to install Python packages via PIP after PEP 668 was
# introduced, but I believe this is safe since we are in a container without
# any real need to cater to other programs/environments.
ARG PIP_BREAK_SYSTEM_PACKAGES=1

# Through this we gain the ability to handle certbot upgrades through
# dependabot pull requests.
COPY requirements.txt /requirements.txt
Expand Down

0 comments on commit c59e5a6

Please sign in to comment.