-
-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump nginx from 1.25.4-alpine to 1.25.5-alpine in /src
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
1 parent
83d2e19
commit c59e5a6
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 \ | ||
|
@@ -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 | ||
|