ASF in Docker does not start on Raspberry Pi 4 runing Raspberry Pi OS 32bit
ASF should start in Docker container
ASF does not start
Probably some dependency is for another architecture not armhf or Docer container is build for another platform
Run latest ASF in container on raspberry Pi 4
logs from container contains only
standard_init_linux.go:211: exec user process caused "exec format error"
Docker image used is
justarchi/archisteamfarm:latest-arm
Apparently docker classified the ARG DOTNET_ARCH as part of the FROM above and not standalone command, which actually works according to the documentation, but is a bit stupid as global ARGs can only be declared before the first FROM entry. This resulted in x64 arch being always used as part of the release.
Sorry for that, the fix is on its way in V4.2.3.3. Thanks for report 馃弳
not a problem, thanks for quick fix!
Most helpful comment
Apparently docker classified the
ARG DOTNET_ARCHas part of theFROMabove and not standalone command, which actually works according to the documentation, but is a bit stupid as global ARGs can only be declared before the firstFROMentry. This resulted inx64arch being always used as part of the release.Sorry for that, the fix is on its way in V4.2.3.3. Thanks for report 馃弳