Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

AppImageCrafters/docker-linuxdeploy

Repository files navigation

docker-linuxdeploy

Linuxdeploy build over the appimagecrafters/docker-base image to be used while creating AppImages.

Includes gcc-7, glib-2.44.0, autotools-1.16.1, autoconf-2.69 and cmake-3.15.4.

Usage

Assuming you your current dir contains a cmake configured application this is how it could be built using this docker image:

docker run -v $PWD:/source -w /source appimagecrafters/docker-linuxdeploy \
   /bin/sh -c "cmake . && DESTDIR=AppDir make install && linuxdeploy --appdir=AppDir --output appimage"

On gitlab-ci.yml:

build:AppImage:
  image: appimagecrafters/docker-linuxdeploy
  script:
    - cmake -DCMAKE_INSTALL_PREFIX=/usr
    - DESTDIR=AppDir make install
    - linuxdeploy --appdir=AppDir --output appimage

About

Linuxdeploy build over the docker-base image to be used while creating AppImages

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published