Skip to content

Commit d0493c7

Browse files
dependabot[bot]JonasAlfredsson
authored andcommitted
Bump nginx from 1.25.0 to 1.25.1
Also add PIP_BREAK_SYSTEM_PACKAGES as an argument during the build process so that PIP packages can be installed.
1 parent 0d186db commit d0493c7

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/Dockerfile

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nginx:1.25.0
1+
FROM nginx:1.25.1
22
LABEL maintainer="Jonas Alfredsson <[email protected]>"
33

44
ENV CERTBOT_DNS_AUTHENTICATORS \
@@ -18,6 +18,11 @@ ENV CERTBOT_DNS_AUTHENTICATORS \
1818
sakuracloud \
1919
ionos
2020

21+
# Needed in order to install Python packages via PIP after PEP 668 was
22+
# introduced, but I believe this is safe since we are in a container without
23+
# any real need to cater to other programs/environments.
24+
ARG PIP_BREAK_SYSTEM_PACKAGES=1
25+
2126
# Do a single run command to make the intermediary containers smaller.
2227
RUN set -ex && \
2328
# Install packages necessary during the build phase (for all architectures).
@@ -26,7 +31,7 @@ RUN set -ex && \
2631
build-essential \
2732
cargo \
2833
curl \
29-
libffi7 \
34+
libffi8 \
3035
libffi-dev \
3136
libssl-dev \
3237
openssl \

src/Dockerfile-alpine

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nginx:1.25.0-alpine
1+
FROM nginx:1.25.1-alpine
22
LABEL maintainer="Jonas Alfredsson <[email protected]>"
33

44
ENV CERTBOT_DNS_AUTHENTICATORS \

0 commit comments

Comments
 (0)