Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5f041da

Browse filesBrowse files
committed
Pin wheel to prevent breaking changes
drop unused setuptools/wheel install on windows
1 parent f3c69c5 commit 5f041da
Copy full SHA for 5f041da

File tree

Expand file treeCollapse file tree

20 files changed

+38
-30
lines changed
Filter options
Expand file treeCollapse file tree

20 files changed

+38
-30
lines changed

‎3.10/alpine3.20/Dockerfile

Copy file name to clipboardExpand all lines: 3.10/alpine3.20/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.10/alpine3.21/Dockerfile

Copy file name to clipboardExpand all lines: 3.10/alpine3.21/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.10/bookworm/Dockerfile

Copy file name to clipboardExpand all lines: 3.10/bookworm/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.10/bullseye/Dockerfile

Copy file name to clipboardExpand all lines: 3.10/bullseye/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.10/slim-bookworm/Dockerfile

Copy file name to clipboardExpand all lines: 3.10/slim-bookworm/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.10/slim-bullseye/Dockerfile

Copy file name to clipboardExpand all lines: 3.10/slim-bullseye/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.11/alpine3.20/Dockerfile

Copy file name to clipboardExpand all lines: 3.11/alpine3.20/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.11/alpine3.21/Dockerfile

Copy file name to clipboardExpand all lines: 3.11/alpine3.21/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.11/bookworm/Dockerfile

Copy file name to clipboardExpand all lines: 3.11/bookworm/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.11/bullseye/Dockerfile

Copy file name to clipboardExpand all lines: 3.11/bullseye/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.11/slim-bookworm/Dockerfile

Copy file name to clipboardExpand all lines: 3.11/slim-bookworm/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.11/slim-bullseye/Dockerfile

Copy file name to clipboardExpand all lines: 3.11/slim-bullseye/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.9/alpine3.20/Dockerfile

Copy file name to clipboardExpand all lines: 3.9/alpine3.20/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.9/alpine3.21/Dockerfile

Copy file name to clipboardExpand all lines: 3.9/alpine3.21/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.9/bookworm/Dockerfile

Copy file name to clipboardExpand all lines: 3.9/bookworm/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.9/bullseye/Dockerfile

Copy file name to clipboardExpand all lines: 3.9/bullseye/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.9/slim-bookworm/Dockerfile

Copy file name to clipboardExpand all lines: 3.9/slim-bookworm/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎3.9/slim-bullseye/Dockerfile

Copy file name to clipboardExpand all lines: 3.9/slim-bullseye/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Dockerfile-linux.template

Copy file name to clipboardExpand all lines: Dockerfile-linux.template
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,8 @@ RUN set -eux; \
301301
--no-cache-dir \
302302
--no-compile \
303303
{{ "setuptools==\( .setuptools.version )" | @sh }} \
304-
wheel \
304+
# https://github.com/docker-library/python/issues/1023
305+
'wheel<0.46' \
305306
; \
306307
{{ ) else "" end -}}
307308
pip3 --version

‎Dockerfile-windows.template

Copy file name to clipboardExpand all lines: Dockerfile-windows.template
-11Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,6 @@ RUN $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f ($en
5454
Remove-Item $env:TEMP/Python*.log -Force; \
5555
\
5656
$env:PYTHONDONTWRITEBYTECODE = '1'; \
57-
{{ if .setuptools then ( -}}
58-
\
59-
Write-Host ('Installing setuptools and wheel ...'); \
60-
pip install \
61-
--disable-pip-version-check \
62-
--no-cache-dir \
63-
--no-compile \
64-
'setuptools=={{ .setuptools.version }}' \
65-
wheel \
66-
; \
67-
{{ ) else "" end -}}
6857
\
6958
Write-Host 'Verifying pip install ...'; \
7059
pip --version; \

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.