From ee6a51677a826ab699eb3809ef0fab035ad05f80 Mon Sep 17 00:00:00 2001 From: MrMeeb Date: Wed, 29 May 2024 16:35:00 +0000 Subject: [PATCH] Add setuptools for certbot dependencies --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d1f7f1..8edfeac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -62,7 +62,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 && \