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
|
||||
#:system (or #$target (utsname:machine (uname)))
|
||||
#:environment environment
|
||||
#:entry-point #$(and entry-point
|
||||
#~(string-append #$profile "/"
|
||||
#$entry-point))
|
||||
#:entry-point
|
||||
#$(and entry-point
|
||||
#~(list (string-append #$profile "/"
|
||||
#$entry-point)))
|
||||
#:symlinks '#$symlinks
|
||||
#:compressor '#$(compressor-command compressor)
|
||||
#:creation-time (make-time time-utc 0 1))))))
|
||||
|
|
Loading…
Reference in New Issue