We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c1de94 commit 576df15Copy full SHA for 576df15
1 file changed
python/3/Dockerfile
@@ -15,16 +15,16 @@ ARG DEBIAN_FRONTEND=noninteractive
15
RUN set -eux; \
16
apt-get update; \
17
apt-get install -y --no-install-recommends \
18
- python3 python3-pip python3-venv; \
+ python3.11 python3.11-pip python3.11-venv; \
19
apt-get clean; \
20
rm -rf /var/lib/apt/lists/*
21
22
# Drop in Python 3.10
23
-COPY --from=py310 /usr/local/lib/python3.10/ /usr/local/lib/python3.10/
+COPY --from=py310 /usr/local/lib/ /usr/local/lib/
24
COPY --from=py310 /usr/local/bin/ /usr/local/bin/
25
26
# Drop in Python 3.12
27
-COPY --from=py312 /usr/local/lib/python3.12/ /usr/local/lib/python3.12/
+COPY --from=py312 /usr/local/lib/ /usr/local/lib/
28
COPY --from=py312 /usr/local/bin/ /usr/local/bin/
29
30
# Make explicit version shims available in /usr/bin
0 commit comments