Compare commits

...

1 Commits

Author SHA1 Message Date
dgtlmoon
25a25d41ff Python 3.11, will it chooch? 2022-12-20 10:24:22 +01:00

View File

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