We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
New dockerfiles support: COPY --chmod=0755 src dest
COPY --chmod=0755 src dest
Simple addition of below code in copy primitive will enable it: if self.__chmod: base_inst = base_inst + '--chmod={} '.format(self.__chmod)
if self.__chmod: base_inst = base_inst + '--chmod={} '.format(self.__chmod)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Support for chmod flag in copy primitive.
New dockerfiles support:
COPY --chmod=0755 src dest
Simple addition of below code in copy primitive will enable it:
if self.__chmod: base_inst = base_inst + '--chmod={} '.format(self.__chmod)
The text was updated successfully, but these errors were encountered: