pack: Pass a list as the entry point for 'build-docker-image'.
* guix/scripts/pack.scm (docker-image)[build]: Pass a list as #:entry-point, not a string.
This commit is contained in:
parent
96f1cbeff8
commit
cd9f56ff5a
|
@ -509,9 +509,10 @@ the image."
|
||||||
#:database #+database
|
#:database #+database
|
||||||
#:system (or #$target (utsname:machine (uname)))
|
#:system (or #$target (utsname:machine (uname)))
|
||||||
#:environment environment
|
#:environment environment
|
||||||
#:entry-point #$(and entry-point
|
#:entry-point
|
||||||
#~(string-append #$profile "/"
|
#$(and entry-point
|
||||||
#$entry-point))
|
#~(list (string-append #$profile "/"
|
||||||
|
#$entry-point)))
|
||||||
#:symlinks '#$symlinks
|
#:symlinks '#$symlinks
|
||||||
#:compressor '#$(compressor-command compressor)
|
#:compressor '#$(compressor-command compressor)
|
||||||
#:creation-time (make-time time-utc 0 1))))))
|
#:creation-time (make-time time-utc 0 1))))))
|
||||||
|
|
Loading…
Reference in New Issue