├── .buildkite ├── pipeline.yml ├── screenshot.png └── template.yml ├── .python-version ├── Dockerfile ├── LICENSE.md ├── README.md ├── docker-compose.yml ├── pyproject.toml ├── renovate.json ├── src └── python_docker_example │ └── __init__.py ├── test_example.py └── uv.lock /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/python-docker-example/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.buildkite/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/python-docker-example/HEAD/.buildkite/screenshot.png -------------------------------------------------------------------------------- /.buildkite/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/python-docker-example/HEAD/.buildkite/template.yml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/python-docker-example/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/python-docker-example/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/python-docker-example/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/python-docker-example/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/python-docker-example/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/python-docker-example/HEAD/renovate.json -------------------------------------------------------------------------------- /src/python_docker_example/__init__.py: -------------------------------------------------------------------------------- 1 | def main() -> None: 2 | print("Hello from python-docker-example!") 3 | -------------------------------------------------------------------------------- /test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/python-docker-example/HEAD/test_example.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/python-docker-example/HEAD/uv.lock --------------------------------------------------------------------------------