chown in dockerfile: What does string after '–chown=' mean?
In dockerfile: ADD --chown=x:y /path/to/a/file /path/in/container I understand ADD is used for copying files in container. chown is linux way of changing file ownership. What does the x and y(represented as placeholders here) mean?