diff options
author | Christopher Baines <christopher.baines@digital.cabinet-office.gov.uk> | 2018-07-01 18:53:38 +0100 |
---|---|---|
committer | Christopher Baines <christopher.baines@digital.cabinet-office.gov.uk> | 2019-05-30 18:18:19 +0100 |
commit | 05db21b52340b06810218521ab3f1698fabad2d6 (patch) | |
tree | 12f69ef9a9caaa93204afe92636d3d16c9b925a2 /guix | |
parent | 97b9975456a25f0a26b83d15c5c92b3b058b91ae (diff) | |
download | gnu-guix-05db21b52340b06810218521ab3f1698fabad2d6.tar gnu-guix-05db21b52340b06810218521ab3f1698fabad2d6.tar.gz |
Work around a issue in grootfs when unpacking tar archives
Diffstat (limited to 'guix')
-rw-r--r-- | guix/docker.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/docker.scm b/guix/docker.scm index 7fe83d9797..537892d907 100644 --- a/guix/docker.scm +++ b/guix/docker.scm @@ -203,9 +203,11 @@ SRFI-19 time-utc object, as the creation time in metadata." ;; Initialize /var/guix, assuming PREFIX points to a profile. (install-database-and-gc-roots "." database prefix)) + (mkdir-p "gnu/store") (apply invoke "tar" "-cf" "layer.tar" `(,@transformation-options ,@%tar-determinism-options + "gnu" ,@paths ,@(if database '("var") '()) ,@(map symlink-source symlinks))) |