├── .github └── workflows │ └── docker-image.yml ├── LICENSE ├── Makefile ├── README.md ├── all └── Dockerfile ├── base ├── Dockerfile ├── apt.conf ├── deadsnakes.gpg ├── deadsnakes.list ├── docker-clean ├── sources.list └── tools │ ├── apt-install │ ├── find-libdeps │ └── wait-for-port ├── black └── Dockerfile ├── certbot └── Dockerfile ├── gray └── Dockerfile ├── ipython └── Dockerfile ├── jupyterlab └── Dockerfile ├── logo.svg ├── pillow ├── 3.10 │ └── Dockerfile ├── 3.11 │ └── Dockerfile ├── 3.12 │ └── Dockerfile ├── 3.13 │ └── Dockerfile ├── 3.9 │ └── Dockerfile └── all │ └── Dockerfile ├── pylama └── Dockerfile ├── pylava └── Dockerfile ├── python3.10 └── Dockerfile ├── python3.11 └── Dockerfile ├── python3.12 └── Dockerfile ├── python3.13 └── Dockerfile ├── python3.9 └── Dockerfile ├── ruff └── Dockerfile └── uv └── Dockerfile /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/README.md -------------------------------------------------------------------------------- /all/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/all/Dockerfile -------------------------------------------------------------------------------- /base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/base/Dockerfile -------------------------------------------------------------------------------- /base/apt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/base/apt.conf -------------------------------------------------------------------------------- /base/deadsnakes.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/base/deadsnakes.gpg -------------------------------------------------------------------------------- /base/deadsnakes.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/base/deadsnakes.list -------------------------------------------------------------------------------- /base/docker-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/base/docker-clean -------------------------------------------------------------------------------- /base/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/base/sources.list -------------------------------------------------------------------------------- /base/tools/apt-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/base/tools/apt-install -------------------------------------------------------------------------------- /base/tools/find-libdeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/base/tools/find-libdeps -------------------------------------------------------------------------------- /base/tools/wait-for-port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/base/tools/wait-for-port -------------------------------------------------------------------------------- /black/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/black/Dockerfile -------------------------------------------------------------------------------- /certbot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/certbot/Dockerfile -------------------------------------------------------------------------------- /gray/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/gray/Dockerfile -------------------------------------------------------------------------------- /ipython/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/ipython/Dockerfile -------------------------------------------------------------------------------- /jupyterlab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/jupyterlab/Dockerfile -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/logo.svg -------------------------------------------------------------------------------- /pillow/3.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/pillow/3.10/Dockerfile -------------------------------------------------------------------------------- /pillow/3.11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/pillow/3.11/Dockerfile -------------------------------------------------------------------------------- /pillow/3.12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/pillow/3.12/Dockerfile -------------------------------------------------------------------------------- /pillow/3.13/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/pillow/3.13/Dockerfile -------------------------------------------------------------------------------- /pillow/3.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/pillow/3.9/Dockerfile -------------------------------------------------------------------------------- /pillow/all/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/pillow/all/Dockerfile -------------------------------------------------------------------------------- /pylama/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/pylama/Dockerfile -------------------------------------------------------------------------------- /pylava/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/pylava/Dockerfile -------------------------------------------------------------------------------- /python3.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/python3.10/Dockerfile -------------------------------------------------------------------------------- /python3.11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/python3.11/Dockerfile -------------------------------------------------------------------------------- /python3.12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/python3.12/Dockerfile -------------------------------------------------------------------------------- /python3.13/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/python3.13/Dockerfile -------------------------------------------------------------------------------- /python3.9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/python3.9/Dockerfile -------------------------------------------------------------------------------- /ruff/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/ruff/Dockerfile -------------------------------------------------------------------------------- /uv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakepacker/python/HEAD/uv/Dockerfile --------------------------------------------------------------------------------