From d40773d5955411551fe5f44a06e5e5c5dab82c12 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Sat, 17 Jun 2023 23:42:31 +0200 Subject: [PATCH] Attempt slim-bookworm ssl3 upgrade --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2e38b410..d2dabcf6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # pip dependencies install stage -FROM python:3.10-slim as builder +FROM python:3.10-slim-bookworm as builder # See `cryptography` pin comment in requirements.txt ARG CRYPTOGRAPHY_DONT_BUILD_RUST=1 @@ -29,10 +29,10 @@ RUN pip install --target=/dependencies playwright~=1.27.1 \ || echo "WARN: Failed to install Playwright. The application can still run, but the Playwright option will be disabled." # Final image stage -FROM python:3.10-slim +FROM python:3.10-slim-bookworm RUN apt-get update && apt-get install -y --no-install-recommends \ - libssl1.1 \ + libssl3 \ libxslt1.1 \ # For pdftohtml poppler-utils \