├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── verify-templating.yml ├── .gitignore ├── 2.7 ├── bookworm │ └── Dockerfile ├── slim-bookworm │ └── Dockerfile ├── slim-trixie │ └── Dockerfile ├── trixie │ └── Dockerfile └── windows │ ├── windowsservercore-ltsc2022 │ └── Dockerfile │ └── windowsservercore-ltsc2025 │ └── Dockerfile ├── 3.11 ├── bookworm │ └── Dockerfile ├── slim-bookworm │ └── Dockerfile ├── slim-trixie │ └── Dockerfile ├── trixie │ └── Dockerfile └── windows │ ├── windowsservercore-ltsc2022 │ └── Dockerfile │ └── windowsservercore-ltsc2025 │ └── Dockerfile ├── Dockerfile-linux.template ├── Dockerfile-windows-servercore.template ├── LICENSE ├── README.md ├── apply-templates.sh ├── generate-stackbrew-library.sh ├── shared.jq ├── update.sh ├── versions.json └── versions.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/verify-templating.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/.github/workflows/verify-templating.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .jq-template.awk 2 | -------------------------------------------------------------------------------- /2.7/bookworm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/2.7/bookworm/Dockerfile -------------------------------------------------------------------------------- /2.7/slim-bookworm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/2.7/slim-bookworm/Dockerfile -------------------------------------------------------------------------------- /2.7/slim-trixie/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/2.7/slim-trixie/Dockerfile -------------------------------------------------------------------------------- /2.7/trixie/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/2.7/trixie/Dockerfile -------------------------------------------------------------------------------- /2.7/windows/windowsservercore-ltsc2022/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/2.7/windows/windowsservercore-ltsc2022/Dockerfile -------------------------------------------------------------------------------- /2.7/windows/windowsservercore-ltsc2025/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/2.7/windows/windowsservercore-ltsc2025/Dockerfile -------------------------------------------------------------------------------- /3.11/bookworm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/3.11/bookworm/Dockerfile -------------------------------------------------------------------------------- /3.11/slim-bookworm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/3.11/slim-bookworm/Dockerfile -------------------------------------------------------------------------------- /3.11/slim-trixie/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/3.11/slim-trixie/Dockerfile -------------------------------------------------------------------------------- /3.11/trixie/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/3.11/trixie/Dockerfile -------------------------------------------------------------------------------- /3.11/windows/windowsservercore-ltsc2022/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/3.11/windows/windowsservercore-ltsc2022/Dockerfile -------------------------------------------------------------------------------- /3.11/windows/windowsservercore-ltsc2025/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/3.11/windows/windowsservercore-ltsc2025/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-linux.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/Dockerfile-linux.template -------------------------------------------------------------------------------- /Dockerfile-windows-servercore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/Dockerfile-windows-servercore.template -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/README.md -------------------------------------------------------------------------------- /apply-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/apply-templates.sh -------------------------------------------------------------------------------- /generate-stackbrew-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/generate-stackbrew-library.sh -------------------------------------------------------------------------------- /shared.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/shared.jq -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/update.sh -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/versions.json -------------------------------------------------------------------------------- /versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/pypy/HEAD/versions.sh --------------------------------------------------------------------------------