Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 976 Bytes

README.md

File metadata and controls

34 lines (27 loc) · 976 Bytes

To build the AppImage, you basically just have to:

  1. Build the base docker image
docker pull centos:6.10
docker build <path/to/this_directory_containing_the_Dockerfile>

Building the image will take several hours at least.

  1. Create a container from image and open a shell
docker images (should show the image ID of the newly created image)
docker run -t -i --name kdevelopappimagecreator <image id>
  1. Copy the script and patches into the docker container
docker cp kdevelop-recipe-centos6.sh kdevelopappimagecreator:/
for p in *.patch ; do docker cp $p kdevelopappimagecreator:/ ; done
  1. Run the script in the interactive shell of the container
./kdevelop-recipe-centos6.sh

Running the script will also take quite a while the first time you do it, so it is advisable to always re-use the same container.

  1. Copy the resulting AppImage out of the container
docker cp kdevelopappimagecreator:/out/KDevelop-git-x86_64.AppImage .