Skip to content
Häfner edited this page Dec 4, 2023 · 8 revisions

Setup your system

sudo apt install libfuse2

tried to compile from source, but doesnt work:

https://github.com/AppImage/AppImageKit
env ARCH=x86_64 bash ci/build.sh

this worked:

pack everything

./pack_app2.sh polyvr

Build app image

one of these:

  • appimagetool -n packages/polyvr
  • ./appimagetool-x86_64.AppImage -n packages/polyvr

Test AppImage in docker

docker build -t appimgbox . ; docker rm test-container ; docker run -d --device /dev/fuse --privileged --name test-container appimgbox && docker logs test-container

Clone this wiki locally