You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
noticed this when building the infra-nginx container:
#0 3.145 ERROR: nginx-1.24.0_1: [unpack] INSTALL script failed to execute pre ACTION: No such file or directory
#0 3.145 ERROR: nginx-1.24.0_1: [unpack] failed to unpack files from archive: No such file or directory
with debug on:
[*] Unpacking packages
nginx-1.24.0_1: unpacking ...
[DEBUG] xbps_pkg_exec_buffer: mkstemp No such file or directory
ERROR: nginx-1.24.0_1: [unpack] INSTALL script failed to execute pre ACTION: No such file or directory
ERROR: nginx-1.24.0_1: [unpack] failed to unpack files from archive: No such file or directory
[DEBUG] [trans] failed to unpack nginx-1.24.0_1: No such file or directory
eventually discovered it was caused by /tmp not existing in the container, so xbps could not use mkstemp when extracting the INSTALL script. This can then affect more dirs if trying to install/reconfigure base-files without /tmp existing, as it won't unpack the INSTALL script that creates dirs like /boot, /home, etc
noticed this when building the infra-nginx container:
with debug on:
eventually discovered it was caused by
/tmp
not existing in the container, so xbps could not usemkstemp
when extracting the INSTALL script. This can then affect more dirs if trying to install/reconfigurebase-files
without/tmp
existing, as it won't unpack the INSTALL script that creates dirs like/boot
,/home
, etcxbps/lib/package_script.c
Lines 82 to 87 in e2ab720
The text was updated successfully, but these errors were encountered: