Skip to content

Commit d57b962

Browse files
committed
Get pip actually working
Have to stick with bookworm (over trixie) and then it works fine
1 parent 696495c commit d57b962

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
ARG PYTHON_VERSION=3.14.0
44
ARG UBUNTU_VERSION=noble
55

6-
FROM python:${PYTHON_VERSION}-trixie AS python-builder
6+
FROM python:${PYTHON_VERSION}-bookworm AS python-builder
7+
# can't bump from bookworm to trixie without breaking SSL (for jammy and noble)
78

89
FROM ghcr.io/minchinweb/base:${UBUNTU_VERSION}
910

@@ -41,8 +42,6 @@ RUN \
4142
libc6 \
4243
# needed for pip
4344
libexpat1 \
44-
# for pip SSL support
45-
libssl-dev \
4645
&& \
4746
echo "[*] cleanup from apt" && \
4847
rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)