https://github.com/thepushkarp/docker-pyenv
pyenv docker images
https://github.com/thepushkarp/docker-pyenv
docker docker-image pyenv python
Last synced: 16 days ago
JSON representation
pyenv docker images
- Host: GitHub
- URL: https://github.com/thepushkarp/docker-pyenv
- Owner: thepushkarp
- License: apache-2.0
- Created: 2024-03-29T09:09:29.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-07T10:39:00.000Z (almost 2 years ago)
- Last Synced: 2025-02-07T08:20:09.392Z (about 1 year ago)
- Topics: docker, docker-image, pyenv, python
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/thepushkarp/pyenv
- Size: 75.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker image with prebuilt pyenv python versions
## Tags
Tags are available in a few formats:
- `-`: images based on the specified variant with multiple python versions installed, and `` is one of them.
- ``: images based on latest stable Debian release, Bullseye currently, with multiple python versions installed, and `` is one of them.
- ``: images based on the specified base with unspecified multiple python versions installed.
- `latest-`: images based on the specified variant with at least latest stable python version, 3.12 currently, installed.
- `latest`: images based on the latest stable Debian release, Bullseye currently, with at least latest stable python version, 3.12 currently, installed.
Versions can be `3`, `3.12`, `3.12.1`, etc, and current supported variants are:
- `alpine`: based on `alpine`, [Dockerfile](https://github.com/thepushkarp/docker-pyenv/blob/main/alpine/Dockerfile)
- `bullseye`: based on `buildpack-deps:bullseye`, [Dockerfile](https://github.com/thepushkarp/docker-pyenv/blob/main/bullseye/Dockerfile)
- `slim-bullseye`: based on `debian:bullseye-slim`, [Dockerfile](https://github.com/thepushkarp/docker-pyenv/blob/main/bullseye/slim/Dockerfile)
- `bookworm`: based on `buildpack-deps:bookworm`, [Dockerfile](https://github.com/thepushkarp/docker-pyenv/blob/main/bookworm/Dockerfile)
- `slim-bookworm`: based on `debian:bookworm-slim`, [Dockerfile](https://github.com/thepushkarp/docker-pyenv/blob/main/bookworm/slim/Dockerfile)
- `focal`: based on `buildpack-deps:focal`, [Dockerfile](https://github.com/thepushkarp/docker-pyenv/blob/main/focal/Dockerfile)
- `slim-focal`: based on `ubuntu:focal`, [Dockerfile](https://github.com/thepushkarp/docker-pyenv/blob/main/focal/slim/Dockerfile)
- `jammy`: based on `buildpack-deps:jammy`, [Dockerfile](https://github.com/thepushkarp/docker-pyenv/blob/main/jammy/Dockerfile)
- `slim-jammy`: based on `ubuntu:jammy`, [Dockerfile](https://github.com/thepushkarp/docker-pyenv/blob/main/jammy/slim/Dockerfile)
## Source
Thanks to [https://hub.docker.com/r/vicamo/pyenv/](https://hub.docker.com/r/vicamo/pyenv/) for the initial code from which this repo was forked.