Support for updating image tags in from parameter of RUN --mount=type=bind instructions in Dockerfile
#27813
marvinruder
started this conversation in
Suggest an Idea
Replies: 1 comment 1 reply
-
|
Would be easier to support if we limit it to having the RUN and image on a single line, e.g. PR welcome if you wish to contribute this |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Tell us more.
The
RUN --mount=type=bindsyntax allows mounting files or directories of images into a Docker build step. One advantage over the already supportedCOPY --from=<tag>syntax is that the number of layers can be reduced when copying multiple files from the same image:Recently, I discovered that Renovate updates Docker image tags in
COPY --from=<tag>instructions, but not inRUN --mount=type=bind,from=<tag>instructions.I would like Renovate to support both cases.
Beta Was this translation helpful? Give feedback.
All reactions