-
-
Notifications
You must be signed in to change notification settings - Fork 565
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error creating AppImage in docker #997
Comments
AppImageAssistant? Where do you have that from? It's been deprecated for centuries ;-) So here is what you can use instead:
Maybe you want to use an ever higher-level tool such as |
Thanks a lot! Just taken script from QGC it worked, did not know it is outdated :) |
https://github.com/probonopd/linuxdeployqt#using-linuxdeployqt-with-travis-ci But if you need Docker, just add |
... or use |
So no need to install fuse in this case? Remove it from docker? |
No, you never needed FUSE, and using FUSE within Docker requires deactivating several security features (e.g., parts of the AppArmor profiles on Ubuntu). For Docker containers, especially ones you're going to dump after the build anyway, it's more viable to just use AppImages as automated self-extracting archives. If you have to call any AppImage more than once, you can furthermore |
Why it still asks for the fuse after
|
|
Because, for whatever reason in the world, you're using a type 1 AppImage there (to build a type 1 AppImage?). The type 1 runtime doesn't support that feature, and type 1 was deprecated years ago and superseded by type 2. Please use appimagetool. |
What is type 1, type 2, @TheAssassin ? Link to appimagetool please? This one: https://github.com/AppImage/AppImageKit ? We use it as it is using here: https://github.com/mavlink/qgroundcontrol/blob/master/deploy/create_linux_appimage.sh#L95 for building appimages and only worked for us. Probably need to switch to other tool. |
https://github.com/AppImage/AppImageSpec/blob/master/draft.md#image-format
AppImageAssistant has been deprecated and unsupported for years. Please consider switching to |
|
Have error creating AppImage in docker image based on CentOS 7.6.1810:
Build script is equivalent to this one:
https://github.com/mavlink/qgroundcontrol/blob/master/deploy/create_linux_appimage.sh
I've read https://github.com/probonopd/AppImageKit/wiki/FUSE and docker file installs
fuse
and libs and also runs:However
does not help and I still get above error. Instruction from WIKI to use
--appimage-extract-and-run
is not clear. Could You clarify it please, @probonopd? Thanks!P.S. Same problem here: https://tutel.me/c/unix/questions/329151/how+to+setup+fuse+for+using+appimages+on+centos+7
The text was updated successfully, but these errors were encountered: