-1

I have tried to build images with four different applications in alpinelinux over the past three weeks, and I always get the same error:
error running container: from /usr/bin/crun creating container for [/bin/sh -c apk add curl]: sd-bus call: Process org.freedesktop.systemd1 exited with status 1: Input/output error

G**gle and the Duck are baffled since no one seems to be using Podman.

Here's my most recent containerfile:

FROM alpine-bills

ARG PLEX_BUILD=linux-x86_64
ARG PLEX_DISTRO=alpinelinux
ARG UNRAR_VERSION=6.2.10
#ARG INTEL_NEO_VERSION=20.48.18558
#ARG INTEL_IGC_VERSION=1.0.5699
#ARG INTEL_GMMLIB_VERSION=20.3.2
#ENV TERM="xterm" LANG="C.UTF-8" LC_ALL="C.UTF-8"

ENTRYPOINT ["/run/podman-init"]

#RUN echo "**** Update and get dependencies ****" && \
#    apk add --no-cache --upgrade --repository http://dl-cdn.alpinelinux.org/alpine/latest-stable/ \
RUN    apk add curl
#      grep \
#      jq
#      wget \
#      xmlstarlet
#      unrar \
#    && \
#    \

#RUN echo "**** install unrar from source ****" && \
#    mkdir /tmp/unrar && \
#    curl -o \
#      /tmp/unrar.tar.gz -L \
#      "https://www.rarlab.com/rar/unrarsrc-${UNRAR_VERSION}.tar.gz" && \
#    tar xf \
#      /tmp/unrar.tar.gz -C \
#      /tmp/unrar --strip-components=1 && \
#    cd /tmp/unrar && \
#   make && \
#   install -v -m755 unrar /usr/local/bin
# && \
#\
#RUN apk add --no-cache --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/latest-stable/ \
#    mesa-va-gallium \
#    libva-utils && \

# Add user
#    useradd -U -d /config -s /bin/false plex && \
#    usermod -G users plex && \
#    \
echo "**** Setup directories ****" && \
    mkdir -p \
      /config \
      /transcode \
      /data \
    && \
    \
echo "**** Cleanup ****" && \
  rm -rf \
    /etc/default/plexmediaserver \
    $HOME/.cache \
#    /tmp/*
    rm -rf /tmp/* \
    rm -rf /var/tmp/*

EXPOSE 32400/tcp 8324/tcp 32469/tcp 1900/udp 32410/udp 32412/udp 32413/udp 32414/udp
VOLUME /config /transcode

RUN echo "**** force library dependencies ****" && \
export LD_LIBRARY_PATH=/lib #required to use /lib/ld-musl.x86_64.so instead of Plex's version && \
export LD_PRELOAD=/usr/lib/libva.so.2:/usr/lib/plexmediaserver/lib/libssl.so.3:/usr/lib/plexmediaserver/lib/libcrypto.so.3 #use system libva (required for system drivers) but dont use system libssl/libcrypto (required for Plex's libpyth>
export LIBVA_DRIVERS_PATH=/usr/lib/dri #use system VA-API drivers instead of Plex's ones

ENV CHANGE_CONFIG_DIR_OWNERSHIP="true" \
    HOME="/config"

ARG TAG=beta
ARG URL=

COPY root/ /

RUN \
# Save version and install
    /installBinary.sh

#HEALTHCHECK --interval=5s --timeout=2s --retries=20 CMD /healthcheck.sh || exit 1
RUN echo "Starting Plex Media Server. . . (you can ignore the libusb_init error)" && \
 export PLEX_MEDIA_SERVER_INFO_MODEL=$(uname -m) && \
 export PLEX_MEDIA_SERVER_INFO_PLATFORM_VERSION=$(uname -r)
`

Here's the debug. This forum won't allow me enough text to give the complete debug so I'll include only the second half:

$ podman image build --log-level=debug -f plexmediaserver.imgbuild -t plex .... DEBU[0000] Checking if we can reuse blob sha256:df80648ab6b19b29c97e65e2df5f82a85e8ad3d4308cacdd8e9d187ee5253c19: general substitution = true, compression for MIME type "application/vnd.oci.image.layer.v1.tar" = true DEBU[0000] Skipping blob sha256:df80648ab6b19b29c97e65e2df5f82a85e8ad3d4308cacdd8e9d187ee5253c19 (already present): DEBU[0000] No compression detected DEBU[0000] Compression change for blob sha256:0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1 ("application/vnd.oci.image.config.v1+json") not supported DEBU[0000] Using original blob without modification DEBU[0000] setting image creation date to 2023-09-02 19:41:29.235820874 +0000 UTC DEBU[0000] created new image ID "0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" DEBU[0000] saved image metadata "{}" DEBU[0000] added name "docker.io/library/67fc8b0b92918ceb7b04cb436d9ab80f2924c7f454d6cfe4bbfbc332e3aa71d4-tmp:latest" to image "0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" DEBU[0000] removing 67fc8b0b92918ceb7b04cb436d9ab80f2924c7f454d6cfe4bbfbc332e3aa71d4-tmp from assigned names to image "0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" DEBU[0000] parsed reference into "[overlay@/home/carl/.local/share/containers/storage+/run/user/1000/containers]@0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" --> 0fc6bb95832e DEBU[0000] Pulling image 0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1 (policy: never) DEBU[0000] Looking up image "0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" in local containers storage DEBU[0000] Trying "0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" ... DEBU[0000] parsed reference into "[overlay@/home/carl/.local/share/containers/storage+/run/user/1000/containers]@0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" DEBU[0000] Found image "0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" as "0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" in local containers storage DEBU[0000] Found image "0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" as "0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" in local containers storage ([overlay@/home/carl/.local/share/containers/storage+/run/user/1000/containers]@0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1) DEBU[0000] exporting opaque data as blob "sha256:0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" DEBU[0000] exporting opaque data as blob "sha256:0fc6bb95832e06252c7f7b0991a6d180028fde4908424191d4de3ac775362cd1" DEBU[0000] Normalized platform linux/amd64 to {amd64 linux [] } DEBU[0000] overlay: mount_data=lowerdir=/home/carl/.local/share/containers/storage/overlay/l/NLEF5L75YPP6YAUQ6GQIZ7OSXO,upperdir=/home/carl/.local/share/containers/storage/overlay/d82feda32afd3ba415ea3e4cab44f2cc0cb53f2998ce251199f1f6918540e0ad/diff,workdir=/home/carl/.local/share/containers/storage/overlay/d82feda32afd3ba415ea3e4cab44f2cc0cb53f2998ce251199f1f6918540e0ad/work,,userxattr,volatile,context="system_u:object_r:container_file_t:s0:c111,c263" DEBU[0000] Container ID: 481de703b15c91ed81388c96130e9361b86246ab812f42fdf00b4f70a23da30a DEBU[0000] Parsed Step: {Env:[PLEX_DISTRO=alpinelinux UNRAR_VERSION=6.2.10 PLEX_BUILD=linux-x86_64 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin] Command:run Args:[apk add curl] Flags:[] Attrs:map[] Message:RUN apk add curl Original:RUN apk add curl} STEP 6/16: RUN apk add curl DEBU[0000] RUN imagebuilder.Run{Shell:true, Args:[]string{"apk add curl"}, Mounts:[]string(nil), Network:""}, docker.Config{Hostname:"", Domainname:"", User:"", Memory:0, MemorySwap:0, MemoryReservation:0, KernelMemory:0, CPUShares:0, CPUSet:"", PortSpecs:[]string(nil), ExposedPorts:map[docker.Port]struct {}{}, PublishService:"", StopSignal:"", StopTimeout:0, Env:[]string{"PLEX_DISTRO=alpinelinux", "UNRAR_VERSION=6.2.10", "PLEX_BUILD=linux-x86_64", "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"}, Cmd:[]string(nil), Shell:[]string{}, Healthcheck:(*docker.HealthConfig)(nil), DNS:[]string(nil), Image:"", Volumes:map[string]struct {}{}, VolumeDriver:"", WorkingDir:"", MacAddress:"", Entrypoint:[]string{"/run/podman-init"}, SecurityOpts:[]string(nil), OnBuild:[]string{}, Mounts:[]docker.Mount(nil), Labels:map[string]string{"io.buildah.version":"1.31.0"}, AttachStdin:false, AttachStdout:false, AttachStderr:false, ArgsEscaped:false, Tty:false, OpenStdin:false, StdinOnce:false, NetworkDisabled:false, VolumesFrom:""} DEBU[0000] using "/var/tmp/buildah2781855534" to hold bundle data DEBU[0000] Resources: &define.CommonBuildOptions{AddHost:[]string{}, OmitHistory:false, CgroupParent:"", CPUPeriod:0x0, CPUQuota:0, CPUShares:0x0, CPUSetCPUs:"", CPUSetMems:"", HTTPProxy:true, IdentityLabel:0x1, Memory:0, DNSSearch:[]string{}, DNSServers:[]string{}, DNSOptions:[]string{}, LabelOpts:[]string(nil), MemorySwap:0, NoHosts:false, NoNewPrivileges:false, OmitTimestamp:false, SeccompProfilePath:"/usr/share/containers/seccomp.json", ApparmorProfile:"", ShmSize:"65536k", Ulimit:[]string{}, Volumes:[]string{}, Secrets:[]string{}, SSHSources:[]string{}, OCIHooksDir:[]string{}} DEBU[0000] adding slirp4netns 10.0.2.3 built-in DNS server DEBU[0000] /etc/system-fips does not exist on host, not mounting FIPS mode subscription DEBU[0000] bind mounted "/home/carl/.local/share/containers/storage/overlay/d82feda32afd3ba415ea3e4cab44f2cc0cb53f2998ce251199f1f6918540e0ad/merged" to "/var/tmp/buildah2781855534/mnt/rootfs" DEBU[0000] bind mounted "/home/carl/.local/share/containers/storage/overlay-containers/481de703b15c91ed81388c96130e9361b86246ab812f42fdf00b4f70a23da30a/userdata/run/secrets" to "/var/tmp/buildah2781855534/mnt/buildah-bind-target-10" DEBU[0000] config = {"ociVersion":"1.1.0-rc.3","process":{"user":{"uid":0,"gid":0,"additionalGids":[0,1,2,3,4,6,10,11,20,26,27]},"args":["/bin/sh","-c","apk add curl"],"env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","PLEX_DISTRO=alpinelinux","UNRAR_VERSION=6.2.10","PLEX_BUILD=linux-x86_64","HOSTNAME=481de703b15c"],"cwd":"/","capabilities":{"bounding":["CAP_CHOWN","CAP_DAC_OVERRIDE","CAP_FOWNER","CAP_FSETID","CAP_KILL","CAP_NET_BIND_SERVICE","CAP_SETFCAP","CAP_SETGID","CAP_SETPCAP","CAP_SETUID","CAP_SYS_CHROOT"],"effective":["CAP_CHOWN","CAP_DAC_OVERRIDE","CAP_FOWNER","CAP_FSETID","CAP_KILL","CAP_NET_BIND_SERVICE","CAP_SETFCAP","CAP_SETGID","CAP_SETPCAP","CAP_SETUID","CAP_SYS_CHROOT"],"permitted":["CAP_CHOWN","CAP_DAC_OVERRIDE","CAP_FOWNER","CAP_FSETID","CAP_KILL","CAP_NET_BIND_SERVICE","CAP_SETFCAP","CAP_SETGID","CAP_SETPCAP","CAP_SETUID","CAP_SYS_CHROOT"],"ambient":["CAP_CHOWN","CAP_DAC_OVERRIDE","CAP_FOWNER","CAP_FSETID","CAP_KILL","CAP_NET_BIND_SERVICE","CAP_SETFCAP","CAP_SETGID","CAP_SETPCAP","CAP_SETUID","CAP_SYS_CHROOT"]},"rlimits":[{"type":"RLIMIT_NOFILE","hard":1024,"soft":1024}],"selinuxLabel":"system_u:system_r:container_t:s0:c111,c263"},"root":{"path":"/var/tmp/buildah2781855534/mnt/rootfs"},"hostname":"481de703b15c","mounts":[{"destination":"/dev","type":"tmpfs","source":"tmpfs","options":["nosuid","strictatime","mode=755","size=65536k"]},{"destination":"/proc","type":"proc","source":"proc","options":["nosuid","noexec","nodev"]},{"destination":"/sys","type":"sysfs","source":"sysfs","options":["nosuid","noexec","nodev","ro"]},{"destination":"/dev/mqueue","type":"mqueue","source":"mqueue","options":["nosuid","noexec","nodev"]},{"destination":"/dev/pts","type":"devpts","source":"devpts","options":["nosuid","noexec","newinstance","ptmxmode=0666","mode=0620","gid=5"]},{"destination":"/dev/shm","type":"tmpfs","source":"shm","options":["private","nodev","noexec","nosuid","mode=1777","size=65536k"]},{"destination":"/etc/hostname","type":"bind","source":"/var/tmp/buildah2781855534/hostname","options":["rbind"]},{"destination":"/etc/hosts","type":"bind","source":"/var/tmp/buildah2781855534/hosts","options":["rbind"]},{"destination":"/etc/resolv.conf","type":"bind","source":"/var/tmp/buildah2781855534/resolv.conf","options":["rbind"]},{"destination":"/run/.containerenv","type":"bind","source":"/var/tmp/buildah2781855534/run/.containerenv","options":["rbind"]},{"destination":"/run/secrets","type":"bind","source":"/var/tmp/buildah2781855534/mnt/buildah-bind-target-10","options":["bind","rprivate"]},{"destination":"/sys/fs/cgroup","type":"cgroup","source":"cgroup","options":["rprivate","nosuid","noexec","nodev","relatime","rw"]}],"linux":{"sysctl":{"net.ipv4.ping_group_range":"0 0"},"resources":{"devices":[{"allow":false,"access":"rwm"}]},"namespaces":[{"type":"pid"},{"type":"network"},{"type":"ipc"},{"type":"uts"},{"type":"mount"},{"type":"cgroup"}],"seccomp":{"defaultAction":"SCMP_ACT_ERRNO","defaultErrnoRet":38,"architectures":["SCMP_ARCH_X86_64","SCMP_ARCH_X86","SCMP_ARCH_X32"],"syscalls":[{"names":["bdflush","io_pgetevents","kexec_file_load","kexec_load","migrate_pages","move_pages","nfsservctl","nice","oldfstat","oldlstat","oldolduname","oldstat","olduname","pciconfig_iobase","pciconfig_read","pciconfig_write","sgetmask","ssetmask","swapcontext","swapoff","swapon","sysfs","uselib","userfaultfd","ustat","vm86","vm86old","vmsplice"],"action":"SCMP_ACT_ERRNO","errnoRet":1},{"names":["_llseek","_newselect","accept","accept4","access","adjtimex","alarm","bind","brk","capget","capset","chdir","chmod","chown","chown32","clock_adjtime","clock_adjtime64","clock_getres","clock_getres_time64","clock_gettime","clock_gettime64","clock_nanosleep","clock_nanosleep_time64","clone","clone3","close","close_range","connect","copy_file_range","creat","dup","dup2","dup3","epoll_create","epoll_create1","epoll_ctl","epoll_ctl_old","epoll_pwait","epoll_pwait2","epoll_wait","epoll_wait_old","eventfd","eventfd2","execve","execveat","exit","exit_group","faccessat","faccessat2","fadvise64","fadvise64_64","fallocate","fanotify_mark","fchdir","fchmod","fchmodat","fchown","fchown32","fchownat","fcntl","fcntl64","fdatasync","fgetxattr","flistxattr","flock","fork","fremovexattr","fsconfig","fsetxattr","fsmount","fsopen","fspick","fstat","fstat64","fstatat64","fstatfs","fstatfs64","fsync","ftruncate","ftruncate64","futex","futex_time64","futimesat","get_mempolicy","get_robust_list","get_thread_area","getcpu","getcwd","getdents","getdents64","getegid","getegid32","geteuid","geteuid32","getgid","getgid32","getgroups","getgroups32","getitimer","getpeername","getpgid","getpgrp","getpid","getppid","getpriority","getrandom","getresgid","getresgid32","getresuid","getresuid32","getrlimit","getrusage","getsid","getsockname","getsockopt","gettid","gettimeofday","getuid","getuid32","getxattr","inotify_add_watch","inotify_init","inotify_init1","inotify_rm_watch","io_cancel","io_destroy","io_getevents","io_setup","io_submit","ioctl","ioprio_get","ioprio_set","ipc","keyctl","kill","landlock_add_rule","landlock_create_ruleset","landlock_restrict_self","lchown","lchown32","lgetxattr","link","linkat","listen","listxattr","llistxattr","lremovexattr","lseek","lsetxattr","lstat","lstat64","madvise","mbind","membarrier","memfd_create","memfd_secret","mincore","mkdir","mkdirat","mknod","mknodat","mlock","mlock2","mlockall","mmap","mmap2","mount","mount_setattr","move_mount","mprotect","mq_getsetattr","mq_notify","mq_open","mq_timedreceive","mq_timedreceive_time64","mq_timedsend","mq_timedsend_time64","mq_unlink","mremap","msgctl","msgget","msgrcv","msgsnd","msync","munlock","munlockall","munmap","name_to_handle_at","nanosleep","newfstatat","open","open_tree","openat","openat2","pause","pidfd_getfd","pidfd_open","pidfd_send_signal","pipe","pipe2","pivot_root","pkey_alloc","pkey_free","pkey_mprotect","poll","ppoll","ppoll_time64","prctl","pread64","preadv","preadv2","prlimit64","process_mrelease","process_vm_readv","process_vm_writev","pselect6","pselect6_time64","ptrace","pwrite64","pwritev","pwritev2","read","readahead","readdir","readlink","readlinkat","readv","reboot","recv","recvfrom","recvmmsg","recvmmsg_time64","recvmsg","remap_file_pages","removexattr","rename","renameat","renameat2","restart_syscall","rmdir","rseq","rt_sigaction","rt_sigpending","rt_sigprocmask","rt_sigqueueinfo","rt_sigreturn","rt_sigsuspend","rt_sigtimedwait","rt_sigtimedwait_time64","rt_tgsigqueueinfo","sched_get_priority_max","sched_get_priority_min","sched_getaffinity","sched_getattr","sched_getparam","sched_getscheduler","sched_rr_get_interval","sched_rr_get_interval_time64","sched_setaffinity","sched_setattr","sched_setparam","sched_setscheduler","sched_yield","seccomp","select","semctl","semget","semop","semtimedop","semtimedop_time64","send","sendfile","sendfile64","sendmmsg","sendmsg","sendto","set_mempolicy","set_robust_list","set_thread_area","set_tid_address","setfsgid","setfsgid32","setfsuid","setfsuid32","setgid","setgid32","setgroups","setgroups32","setitimer","setns","setpgid","setpriority","setregid","setregid32","setresgid","setresgid32","setresuid","setresuid32","setreuid","setreuid32","setrlimit","setsid","setsockopt","setuid","setuid32","setxattr","shmat","shmctl","shmdt","shmget","shutdown","sigaction","sigaltstack","signal","signalfd","signalfd4","sigpending","sigprocmask","sigreturn","sigsuspend","socket","socketcall","socketpair","splice","stat","stat64","statfs","statfs64","statx","symlink","symlinkat","sync","sync_file_range","syncfs","syscall","sysinfo","syslog","tee","tgkill","time","timer_create","timer_delete","timer_getoverrun","timer_gettime","timer_gettime64","timer_settime","timer_settime64","timerfd","timerfd_create","timerfd_gettime","timerfd_gettime64","timerfd_settime","timerfd_settime64","times","tkill","truncate","truncate64","ugetrlimit","umask","umount","umount2","uname","unlink","unlinkat","unshare","utime","utimensat","utimensat_time64","utimes","vfork","wait4","waitid","waitpid","write","writev"],"action":"SCMP_ACT_ALLOW"},{"names":["personality"],"action":"SCMP_ACT_ALLOW","args":[{"index":0,"value":0,"op":"SCMP_CMP_EQ"}]},{"names":["personality"],"action":"SCMP_ACT_ALLOW","args":[{"index":0,"value":8,"op":"SCMP_CMP_EQ"}]},{"names":["personality"],"action":"SCMP_ACT_ALLOW","args":[{"index":0,"value":131072,"op":"SCMP_CMP_EQ"}]},{"names":["personality"],"action":"SCMP_ACT_ALLOW","args":[{"index":0,"value":131080,"op":"SCMP_CMP_EQ"}]},{"names":["personality"],"action":"SCMP_ACT_ALLOW","args":[{"index":0,"value":4294967295,"op":"SCMP_CMP_EQ"}]},{"names":["arch_prctl"],"action":"SCMP_ACT_ALLOW"},{"names":["modify_ldt"],"action":"SCMP_ACT_ALLOW"},{"names":["open_by_handle_at"],"action":"SCMP_ACT_ERRNO","errnoRet":1},{"names":["bpf","fanotify_init","lookup_dcookie","perf_event_open","quotactl","setdomainname","sethostname","setns"],"action":"SCMP_ACT_ERRNO","errnoRet":1},{"names":["chroot"],"action":"SCMP_ACT_ALLOW"},{"names":["delete_module","finit_module","init_module","query_module"],"action":"SCMP_ACT_ERRNO","errnoRet":1},{"names":["acct"],"action":"SCMP_ACT_ERRNO","errnoRet":1},{"names":["kcmp","process_madvise"],"action":"SCMP_ACT_ERRNO","errnoRet":1},{"names":["ioperm","iopl"],"action":"SCMP_ACT_ERRNO","errnoRet":1},{"names":["clock_settime","clock_settime64","settimeofday","stime"],"action":"SCMP_ACT_ERRNO","errnoRet":1},{"names":["vhangup"],"action":"SCMP_ACT_ERRNO","errnoRet":1},{"names":["socket"],"action":"SCMP_ACT_ERRNO","errnoRet":22,"args":[{"index":0,"value":16,"op":"SCMP_CMP_EQ"},{"index":2,"value":9,"op":"SCMP_CMP_EQ"}]},{"names":["socket"],"action":"SCMP_ACT_ALLOW","args":[{"index":2,"value":9,"op":"SCMP_CMP_NE"}]},{"names":["socket"],"action":"SCMP_ACT_ALLOW","args":[{"index":0,"value":16,"op":"SCMP_CMP_NE"}]},{"names":["socket"],"action":"SCMP_ACT_ALLOW","args":[{"index":2,"value":9,"op":"SCMP_CMP_NE"}]}]},"maskedPaths":["/proc/acpi","/proc/kcore","/proc/keys","/proc/latency_stats","/proc/timer_list","/proc/timer_stats","/proc/sched_debug","/proc/scsi","/sys/firmware","/sys/fs/selinux","/sys/dev"],"readonlyPaths":["/proc/asound","/proc/bus","/proc/fs","/proc/irq","/proc/sys","/proc/sysrq-trigger"],"mountLabel":"system_u:object_r:container_file_t:s0:c111,c263"}} DEBU[0000] Running ["/usr/bin/crun" "--systemd-cgroup" "create" "--bundle" "/var/tmp/buildah2781855534" "--pid-file" "/var/tmp/buildah2781855534/pid" "--no-new-keyring" "buildah-buildah2781855534"] DEBU[0000] "/var/tmp/buildah2781855534/mnt/buildah-bind-target-10" is apparently not really mounted, skipping DEBU[0000] "/var/tmp/buildah2781855534/mnt/rootfs" is apparently not really mounted, skipping DEBU[0000] "/var/tmp/buildah2781855534/mnt" is apparently not really mounted, skipping error running container: from /usr/bin/crun creating container for [/bin/sh -c apk add curl]: sd-bus call: Process org.freedesktop.systemd1 exited with status 1: Input/output error : exit status 1 ERRO[0000] did not get container create message from subprocess: EOF DEBU[0000] Error building at step {Env:[PLEX_DISTRO=alpinelinux UNRAR_VERSION=6.2.10 PLEX_BUILD=linux-x86_64 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin] Command:run Args:[apk add curl] Flags:[] Attrs:map[] Message:RUN apk add curl Original:RUN apk add curl}: while running runtime: exit status 1 Error: building at STEP "RUN apk add curl": while running runtime: exit status 1 DEBU[0000] Shutting down engines

Tried four different apps, adapting Dockerfiles from github. All give the same I'O error.

Bill
  • 1
  • 3

0 Answers0