-
Notifications
You must be signed in to change notification settings - Fork 3
Docker 25 / API v1.44: fix buildpacks remote-builder breakage #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jphenow
wants to merge
31
commits into
main
Choose a base branch
from
jphenow/buildpacks
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
bb339cc
Adds CLAUDE.md
jphenow 8fc7938
chore: upgrade Docker base image and build dependencies
jphenow fb78692
build: update accelerated-container-image and overlaybd snapshotter v…
jphenow 183f1fe
chore: update Go dependencies to support Docker 25.0.5
jphenow 420fbfe
build: upgrade Go and dependency versions for Docker 25 compatibility
jphenow c1bd8a9
test: add comprehensive Docker 25 upgrade validation suite
jphenow 86bb785
docs: record Docker 25 upgrade test results and validation
jphenow cb885e0
chore: expand .dockerignore for cleaner Docker images
jphenow 5149354
chore: add pre-commit hooks and lint targets
jphenow 42566f1
ci: restructure workflow with separate lint, test, and build jobs
jphenow 1ac68ae
test: implement comprehensive tiered test suite
jphenow 29db88d
remove interim artifact
jphenow f9a2508
test: use dynamic repository root detection instead of hardcoded paths
jphenow f9842eb
ci: restrict push trigger to main branch only
jphenow 06391c1
test: use --entrypoint flag to skip docker-entrypoint.d scripts
jphenow 976624c
chore: upgrade Go from 1.21 to 1.24
jphenow 83897e3
chore: update build artifacts and reference links
jphenow 0611c51
test: remove legacy monolithic test scripts
jphenow c3472a2
test: add Buildx and Alpine version checks to version verification
jphenow 119f0b6
build: remove explicit docker-buildx copy from Dockerfile
jphenow 9c102b5
test: remove tier1 version check test
jphenow c81a42e
test: add buildpacks CI matrix across Heroku/Paketo/GCP builders
jphenow 65a8808
ci: re-run on label events so test:* labels take effect without a push
jphenow 8f4ef2c
ci: pin buildpacks/setup-pack to v5.12.0 (no rolling v5 tag exists)
jphenow cf42103
test: add .python-version alongside runtime.txt for python buildpacks…
jphenow 38d5eed
test: drop runtime.txt from python fixture — .python-version is enough
jphenow b979132
docs(tests): fix stale tests/README references (#42)
jphenow c95876f
docs(tests): correct EXPECT_FAIL exit-code contract in buildpacks mat…
jphenow 7cc9416
test(tier2): fail hard when API v1.44 client build fails (#42)
jphenow 53a3cc0
test: always tear down rchab-test container on exit (#42)
jphenow cf4636a
test: poll rchab for readiness instead of blind sleep 45 (#42)
jphenow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,35 @@ | ||
| # Fly.io specific | ||
| fly.toml | ||
| id_rsa | ||
| id_rsa | ||
|
|
||
| # Git | ||
| .git | ||
| .gitignore | ||
| .github | ||
|
|
||
| # Tests (not needed in image) | ||
| tests/ | ||
| TEST_RESULTS.md | ||
|
|
||
| # Documentation | ||
| *.md | ||
| !README.md | ||
|
|
||
| # Development files | ||
| .pre-commit-config.yaml | ||
| Vagrantfile | ||
| .vagrant | ||
|
|
||
| # Build artifacts | ||
| *.log | ||
| *.tmp | ||
|
|
||
| # IDE | ||
| .vscode | ||
| .idea | ||
| *.swp | ||
| *.swo | ||
|
|
||
| # OS | ||
| .DS_Store | ||
| Thumbs.db |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,4 @@ | ||
| id_rsa | ||
| .vagrant/ | ||
|
|
||
| dockerproxy/dockerproxy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| repos: | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| rev: v4.5.0 | ||
| hooks: | ||
| - id: trailing-whitespace | ||
| - id: end-of-file-fixer | ||
| - id: check-yaml | ||
| - id: check-added-large-files | ||
|
|
||
| - repo: local | ||
| hooks: | ||
| - id: go-mod-tidy | ||
| name: go mod tidy | ||
| entry: bash -c 'cd dockerproxy && go mod tidy' | ||
| language: system | ||
| files: \.go$ | ||
| pass_filenames: false | ||
|
|
||
| - id: go-fmt | ||
| name: go fmt | ||
| entry: gofmt | ||
| args: [-w] | ||
| language: system | ||
| files: \.go$ | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
go-mod-tidyhook is configured to run only when a*.gofile changes, so edits todockerproxy/go.mod/go.sumwon’t trigger it. Update thefiles:selector (or usetypes: [go, go-mod]) so dependency-only changes still rungo mod tidy.