Repository

moby/buildkit

concurrent, cache-efficient, and Dockerfile-agnostic builder toolkit
6765 864 113 1522
  • 000
Minimal example: # touch file && docker run --rm -it $(docker build -q .) ls -l /example FROM ubuntu:22.04 COPY --chmod=4555 file /example/ The permissions of file are -r-xr-xr-x instead of -r-sr-xr-x. Compare with this working version: # touch file && docker run --rm -it $(docker b...