Warning, /kdevelop/kdevelop/appimage/README.md is written in an unsupported language. File is not indexed.

0001 To build the AppImage, you basically just have to:
0002 
0003 1) Build the base docker image
0004 
0005 ```
0006 docker pull centos:6.10
0007 docker build <path/to/this_directory_containing_the_Dockerfile>
0008 ```
0009 Building the image will take several hours at least.
0010 
0011 2) Create a container from image and open a shell
0012 ```
0013 docker images (should show the image ID of the newly created image)
0014 docker run -t -i --name kdevelopappimagecreator <image id>
0015 ```
0016 
0017 3) Copy the script and patches into the docker container
0018 ```
0019 docker cp kdevelop-recipe-centos6.sh kdevelopappimagecreator:/
0020 for p in *.patch ; do docker cp $p kdevelopappimagecreator:/ ; done
0021 ```
0022 
0023 4) Run the script in the interactive shell of the container
0024 ```
0025 ./kdevelop-recipe-centos6.sh
0026 ```
0027 
0028 Running the script will also take quite a while the first time you do it,
0029 so it is advisable to always re-use the same container.
0030 
0031 5) Copy the resulting AppImage out of the container
0032 ```
0033 docker cp kdevelopappimagecreator:/out/KDevelop-git-x86_64.AppImage .
0034 ```