Compare commits

...

3 Commits

Author SHA1 Message Date
dgtlmoon
c4009d4f21 Maybe by miracle some dependancy hooks the right libssl here 2023-10-30 18:05:16 +01:00
dgtlmoon
a86f7457d1 bookworm doesnt have libssl1 not libssl3 2023-10-30 17:55:12 +01:00
dgtlmoon
5a18c96209 upgrade to bookworm 2023-10-30 17:50:27 +01:00

View File

@@ -1,5 +1,5 @@
# pip dependencies install stage
FROM python:3.11-slim-bullseye as builder
FROM python:3.11-slim-bookworm as builder
# See `cryptography` pin comment in requirements.txt
ARG CRYPTOGRAPHY_DONT_BUILD_RUST=1
@@ -34,10 +34,9 @@ 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.11-slim-bullseye
FROM python:3.11-slim-bookworm
RUN apt-get update && apt-get install -y --no-install-recommends \
libssl1.1 \
libxslt1.1 \
# For pdftohtml
poppler-utils \