sshmanko / acestream-armv7

AceStream engine for ARM devices
47 stars 14 forks source link

chroot: can't execute '/system/bin/busybox': Exec format error #9

Closed sergey-zabolotny closed 5 years ago

sergey-zabolotny commented 5 years ago

how to reproduce:

git clone git@github.com:sshmanko/acestream-armv7.git v3.1.33

add set -xe to the top and remove redirect to log file from last line from acestream.start file

create Dokerfile with:

FROM alpine:3.9
USER root

RUN set -ex; \
    apk add --update --no-cache \
    bash

COPY v3.1.33/ /opt/acestream/

EXPOSE 62062

CMD ["/opt/acestream/acestream.start"]

docker build -t acestream:3.1.33 . start container with command:

docker run -d --privileged=true --name acestream-engine acestream:3.1.33 docker logs acestream-engine

sshmanko commented 5 years ago

there is already a docker image with acestream: https://hub.docker.com/r/aaaler/acestream-pi/

This repository is tested on Raspberry PI 2/3 with latest Raspbian image. I cannot help you with docker and alpine image unfortunately