├── .github └── workflows │ └── build-and-release.yml ├── .gitignore ├── Dockerfile ├── LICENSE └── README.md /.github/workflows/build-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karo-solutions/Signal-Desktop-AppImage/HEAD/.github/workflows/build-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | out/ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karo-solutions/Signal-Desktop-AppImage/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karo-solutions/Signal-Desktop-AppImage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karo-solutions/Signal-Desktop-AppImage/HEAD/README.md --------------------------------------------------------------------------------