Can I open appimage or deb (executable) files in the docker container?

can I open an appimage or deb (executable) file in the docker container?

prompt to install FUSE after running

[root@f8864c3381a1 dist]-sharp ./electron-quick-start1.0.0.AppImage 
dlopen(): error loading libfuse.so.2

AppImages require FUSE to run. 
You might still be able to extract the contents of this AppImage 
if you run it with the --appimage-extract option. 
See https://github.com/AppImage/AppImageKit/wiki/FUSE 
for more information
[root@f8864c3381a1 dist]-sharp ./electron-quick-start1.0.0.AppImage ----appimage-extract
dlopen(): error loading libfuse.so.2

AppImages require FUSE to run. 
You might still be able to extract the contents of this AppImage 
if you run it with the --appimage-extract option. 
See https://github.com/AppImage/AppImageKit/wiki/FUSE 
for more information

but the installation is not successful according to the documentation
https://github.com/AppImage/A.

[root@f8864c3381a1 dist]-sharp yum --enablerepo=epel -y install fuse-sshfs -sharp install from EPEL

Loaded plugins: fastestmirror, ovl


Error getting repository data for epel, repository not found
[root@f8864c3381a1 dist]-sharp user="$(whoami)"
[root@f8864c3381a1 dist]-sharp usermod -a -G fuse "$user" 
usermod: group "fuse" does not exist
[root@f8864c3381a1 dist]-sharp 
[root@f8864c3381a1 dist]-sharp 

solution ~ I don"t know whether the docker container can run appimage files or how to install FUSE. under centos:7 Xiaobai asks for help.

Mar.23,2022

Error getting repository data for epel, repository not found

it means that you can't find repo, so you can't download the installation package.

it is possible that your system does not enable the repo,CentOS7 of EPEL, use the following two commands to try it first

 -sharp wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
 -sharp rpm -ivh epel-release-latest-7.noarch.rpm
Menu