-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
feat(manager/dockerfile): add support for Dockerfile RUN --mount=from
#32743
Merged
Conversation
This file contains 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
viceice
changed the title
feat: add support for Dockerfile
feat(manager/dockerfile): add support for Dockerfile Nov 26, 2024
RUN --mount=from
`RUN --mount=from
`
viceice
changed the title
feat(manager/dockerfile): add support for Dockerfile
feat(manager/dockerfile): add support for Dockerfile Nov 26, 2024
RUN --mount=from
`RUN --mount=from
viceice
reviewed
Nov 26, 2024
Co-authored-by: Michael Kriese <[email protected]>
bschoenmaeckers
force-pushed
the
main
branch
from
November 26, 2024 12:22
aa2c321
to
68b5a24
Compare
bschoenmaeckers
force-pushed
the
main
branch
from
November 26, 2024 12:33
68b5a24
to
c6fb361
Compare
please don't force-push, we do squash merge so only do it when really required for conflict resolution |
viceice
approved these changes
Nov 27, 2024
🎉 This PR is included in version 39.33.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
SuperSandro2000
added a commit
to SuperSandro2000/renovate
that referenced
this pull request
Nov 27, 2024
* upstream/main: (206 commits) build(deps): update dependency @opentelemetry/semantic-conventions to v1.28.0 (renovatebot#32775) fix(deps): update ghcr.io/renovatebot/base-image docker tag to v9.11.3 (renovatebot#32774) chore(deps): update pnpm to v9.14.2 (renovatebot#32769) feat(manager/dockerfile): add support for Dockerfile `RUN --mount=from` (renovatebot#32743) feat(datasource/pypi): always fallback to try simple endpoints (renovatebot#32024) fix(npm): update npmrc before executing corepack cmd (renovatebot#32733) fix(bitbucket): source link root path (renovatebot#32689) chore(deps): update docker/dockerfile docker tag to v1.12.0 (renovatebot#32764) fix(deps): update ghcr.io/renovatebot/base-image docker tag to v9.11.2 (renovatebot#32763) chore(deps): update pnpm to v9.14.1 (renovatebot#32762) fix(deps): update ghcr.io/containerbase/sidecar docker tag to v13.0.22 (renovatebot#32761) chore(deps): update ghcr.io/containerbase/devcontainer docker tag to v13.0.22 (renovatebot#32759) chore(deps): update davidanson/markdownlint-cli2-action action to v18 (renovatebot#32684) chore(deps): update containerbase/internal-tools action to v3.5.2 (renovatebot#32757) chore(deps): update dependency @types/better-sqlite3 to v7.6.12 (renovatebot#32756) test(presets): validate schedule presets (renovatebot#32755) ci: disable Windows tests (renovatebot#32754) fix(presets): Add F# to dotnet monorepo (renovatebot#32706) build(deps): update dependency yaml to v2.6.1 (renovatebot#32744) chore(deps): update dependency @types/diff to v6 (renovatebot#32742) ...
ssams
pushed a commit
to ssams/renovate
that referenced
this pull request
Dec 2, 2024
…m` (renovatebot#32743) Co-authored-by: Michael Kriese <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Changes
This add support for updating a docker image mount during a RUN step in a Dockerfile. I used the handling for
COPY --from
as an example.Context
See for all syntax supported by docker: https://docs.docker.com/reference/dockerfile/#run---mount
Documentation (please check one with an [x])
How I've tested my work (please select one)
I have verified these changes via: