imagebuilder
imagebuilder copied to clipboard
Builds Dockerfile using the Docker client (with squashing! and secrets!)
Add an option to `ADD/COPY` to keep the ownership of the file also in the container. Ref: https://github.com/containers/buildah/pull/3767
e.g. ```dockerfile LABEL name="tech-preview/vm-launcher" \ version="v0.0.1" \ release="10" summary="Hosts VMs" \ ``` does NOT fail as expected, but simply ignores all labels following `release`. podman fails as expected.
This PR is to keep the ownership of local files, when used with ADD or COPY - BUT WITHOUT `--chown` flag fixes #226 , Ref: https://github.com/containers/buildah/pull/3767, containers/buildah/pull/4001 What are the...
We extended the parser to recognize it and add a field to `Copy` structs, but didn't teach `dockerclient` to either use the value or produce an error when people attempted...
I must be doing something wrong here but can't figure out what. With imagebuilder from latest head, and docker-1.13.1-51.git4032bd5.fc27.x86_64 ``` $ imagebuilder -t foo -f Dockerfile.min . --> FROM fedora:27...
Docker now supports --network and --security option on the RUN line in Dockerfiles, this PR adds support for both. Signed-off-by: Daniel J Walsh
Handle variable expansions using #, ##, %, %%, /, //, /#, and /%.