guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#30572] [PATCH 5/7] docker: Allow the addition of extra files into t


From: Danny Milosavljevic
Subject: [bug#30572] [PATCH 5/7] docker: Allow the addition of extra files into the image.
Date: Mon, 26 Feb 2018 00:36:47 +0100

> +                      (zero? (apply system* "tar" "-C" extra-items-dir
> +                                    "-rf" "layer.tar"
> +                                    (append %tar-determinism-options
> +                                            '("."))))))))

-C is order-sensitive.  Apparently it still doesn't cause layer.tar
to be created inside extra-items-dir (huh...), but for clarity, I'd prefer:

tar -rf layer.tar -C extra-items-dir .

Otherwise LGTM!





reply via email to

[Prev in Thread] Current Thread [Next in Thread]