**Description** Sometimes is useful set flags to files once they are copied. Example: ```powershell GOOS=linux GOARCH=amd64 go build -o myprog ``` ```Dockerfile FROM scratch COPY --chmod=775 myprog . ENTRYPOINT ["./myprog"] ``` ```powershell docker build . ```