We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 696495c commit d57b962Copy full SHA for d57b962
Dockerfile
@@ -3,7 +3,8 @@
3
ARG PYTHON_VERSION=3.14.0
4
ARG UBUNTU_VERSION=noble
5
6
-FROM python:${PYTHON_VERSION}-trixie AS python-builder
+FROM python:${PYTHON_VERSION}-bookworm AS python-builder
7
+# can't bump from bookworm to trixie without breaking SSL (for jammy and noble)
8
9
FROM ghcr.io/minchinweb/base:${UBUNTU_VERSION}
10
@@ -41,8 +42,6 @@ RUN \
41
42
libc6 \
43
# needed for pip
44
libexpat1 \
- # for pip SSL support
45
- libssl-dev \
46
&& \
47
echo "[*] cleanup from apt" && \
48
rm -rf /var/lib/apt/lists/*
0 commit comments