https://github.com/containerbase/python-prebuild
containerbase Python releases
https://github.com/containerbase/python-prebuild
containerbase docker python renovate
Last synced: 6 months ago
JSON representation
containerbase Python releases
- Host: GitHub
- URL: https://github.com/containerbase/python-prebuild
- Owner: containerbase
- License: mit
- Created: 2021-03-22T14:02:14.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-09T22:24:57.000Z (6 months ago)
- Last Synced: 2025-04-09T23:25:49.628Z (6 months ago)
- Topics: containerbase, docker, python, renovate
- Language: Shell
- Homepage: https://github.com/containerbase/base
- Size: 919 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# containerbase Python releases
[](https://github.com/containerbase/python-prebuild/actions/workflows/build.yml?query=branch%3Amain)

Prebuild Python releases used by [containerbase/base](https://github.com/containerbase/base).
## Local development
Build the image
```bash
docker build -t builder --build-arg APT_PROXY=http://apt-proxy:3142 --build-arg DISTRO=focal .
```Test the image
```bash
docker run --rm -it -v ${PWD}/.cache:/cache -e DEBURG=true builder 3.9.1
````${PWD}/.cache` will contain packed releases after successful build.
Optional environment variables
| Name | Description | Default |
| ----------- | ------------------------------------------------------------ | --------- |
| `DISTRO` | Set an ubuntu base distro, `focal` and `jammy` are supported | `focal` |
| `APT_PROXY` | Set an APT http proxy for installing build deps | `` |
| `DEBUG` | Show verbose php build output | `` |