-
-
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.
Also add PIP_BREAK_SYSTEM_PACKAGES as an argument during the build process so that PIP packages can be installed.
- Loading branch information
1 parent
0d186db
commit d0493c7
Showing
2 changed files
with
8 additions
and
3 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.0 | ||
FROM nginx:1.25.1 | ||
LABEL maintainer="Jonas Alfredsson <[email protected]>" | ||
|
||
ENV CERTBOT_DNS_AUTHENTICATORS \ | ||
|
@@ -18,6 +18,11 @@ ENV CERTBOT_DNS_AUTHENTICATORS \ | |
sakuracloud \ | ||
ionos | ||
|
||
# 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 | ||
|
||
# Do a single run command to make the intermediary containers smaller. | ||
RUN set -ex && \ | ||
# Install packages necessary during the build phase (for all architectures). | ||
|
@@ -26,7 +31,7 @@ RUN set -ex && \ | |
build-essential \ | ||
cargo \ | ||
curl \ | ||
libffi7 \ | ||
libffi8 \ | ||
libffi-dev \ | ||
libssl-dev \ | ||
openssl \ | ||
|
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.0-alpine | ||
FROM nginx:1.25.1-alpine | ||
LABEL maintainer="Jonas Alfredsson <[email protected]>" | ||
|
||
ENV CERTBOT_DNS_AUTHENTICATORS \ | ||
|