https://github.com/dwolla/jenkins-agent-docker-python
Docker image based on Dwolla’s core Jenkins Agent Docker image making Python build tools available to Jenkins jobs.
https://github.com/dwolla/jenkins-agent-docker-python
Last synced: about 2 months ago
JSON representation
Docker image based on Dwolla’s core Jenkins Agent Docker image making Python build tools available to Jenkins jobs.
- Host: GitHub
- URL: https://github.com/dwolla/jenkins-agent-docker-python
- Owner: Dwolla
- License: mit
- Created: 2016-11-07T21:52:58.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-03-12T21:46:32.000Z (about 1 year ago)
- Last Synced: 2025-02-15T23:44:02.852Z (3 months ago)
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/dwolla/jenkins-agent-python/
- Size: 19.5 KB
- Stars: 3
- Watchers: 18
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Jenkins Agent with Python Build Tools
[](https://microbadger.com/images/dwolla/jenkins-agent-python)
[](https://github.com/Dwolla/jenkins-agent-docker-python/blob/master/LICENSE)Docker image based on [Dwolla’s core Jenkins Agent Docker image](https://github.com/Dwolla/jenkins-agent-docker-core) making Python build tools available to Jenkins jobs.
GitHub Actions will build the Docker images for multiple supported architectures.
## Local Development
With [yq](https://kislyuk.github.io/yq/) installed, to build this image locally run the following command:
```bash
make \
CORE_JDK11_TAG=$( curl --silent https://raw.githubusercontent.com/Dwolla/jenkins-agents-workflow/main/.github/workflows/build-docker-image.yml | \
yq .on.workflow_call.inputs.CORE_TAG.default) \
all
```Alternatively, without [yq](https://kislyuk.github.io/yq/) installed, refer to the CORE_TAG default values defined in [jenkins-agents-workflow](https://github.com/Dwolla/jenkins-agents-workflow/blob/main/.github/workflows/build-docker-image.yml) and run the following command:
`make CORE_JDK11_TAG= all`