Skip to content

Commit

Permalink
Bump nginx from 1.25.0 to 1.25.1
Browse files Browse the repository at this point in the history
Also add PIP_BREAK_SYSTEM_PACKAGES as an argument during the build
process so that PIP packages can be installed.
  • Loading branch information
dependabot[bot] authored and JonasAlfredsson committed Jun 15, 2023
1 parent 0d186db commit d0493c7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions src/Dockerfile
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 \
Expand All @@ -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).
Expand All @@ -26,7 +31,7 @@ RUN set -ex && \
build-essential \
cargo \
curl \
libffi7 \
libffi8 \
libffi-dev \
libssl-dev \
openssl \
Expand Down
2 changes: 1 addition & 1 deletion src/Dockerfile-alpine
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 \
Expand Down

0 comments on commit d0493c7

Please sign in to comment.