From 9e06b48edb353500acd9e2340ecc964922067000 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 27 May 2024 22:46:33 +0000 Subject: [PATCH 1/2] Update alpine Docker tag to v3.20.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0a68427..0dd4ad9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.19.1 as base +FROM alpine:3.20.0 as base ARG TARGETARCH FROM base AS base-amd64 From b25bb57772e5eb275164a9cdbc597d312cccb836 Mon Sep 17 00:00:00 2001 From: MrMeeb Date: Wed, 29 May 2024 16:35:00 +0000 Subject: [PATCH 2/2] Add setuptools for certbot dependencies --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0dd4ad9..055e060 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,7 +59,7 @@ RUN python3 -m venv /app/certbot/ && /app/certbot/bin/pip install --upgrade pip #Added additional pip steps to fix cython 3.0.0 issue - https://github.com/yaml/pyyaml/issues/601 COPY requirements.txt /app/certbot/requirements.txt RUN apk add --no-cache --virtual .deps gcc python3-dev libc-dev libffi-dev && \ - /app/certbot/bin/pip install wheel && \ + /app/certbot/bin/pip install wheel setuptools && \ /app/certbot/bin/pip install "Cython<3.0" pyyaml --no-build-isolation && \ /app/certbot/bin/pip install -r /app/certbot/requirements.txt && \ ln -s /app/certbot/bin/certbot /usr/bin/certbot &&\