MODWRKFLOW-66: Utilize relatively new Docker feature to change mode on COPY.#156
Merged
Conversation
…n COPY. This avoids relying on user space within the container to explicitly run `chmod`. This reduces the security burden if/when a `chmod` has some exploit and needs updating. This also reduces the extra duplication that Docker creates for every change. A separate `RUN chmod` command would result in a duplication of the entire JAR file and possibly other files within the image. Using `COPY --chmod=` avoids this. Be warned that this is a new feature and older **Docker** clients may have problems building this.
JamesS-TAMU
approved these changes
Jun 23, 2026
JamesS-TAMU
left a comment
There was a problem hiding this comment.
Built successfully under both Linux file system and mounted Windows file system.
|
rmathew1011
approved these changes
Jun 24, 2026
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
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.



MODWRKFLOW-66
This avoids relying on user space within the container to explicitly run
chmod. This reduces the security burden if/when achmodhas some exploit and needs updating.This also reduces the extra duplication that Docker creates for every change. A separate
RUN chmodcommand would result in a duplication of the entire JAR file and possibly other files within the image. UsingCOPY --chmod=avoids this.Be warned that this is a new feature and older Docker clients may have problems building this.