Warning, /network/falkon/linux/appimage/Dockerfile is written in an unsupported language. File is not indexed.
0001 # Build: 0002 # docker build -t falkon-appimage-build . 0003 # Run: 0004 # docker run -v $OUT_DIRECTORY:/out -it falkon-appimage-build $FALKON_TARBALL_URL 0005 0006 FROM centos:7 0007 0008 RUN yum -y install \ 0009 wget \ 0010 fontconfig \ 0011 xz \ 0012 openssl-devel \ 0013 libX11-devel \ 0014 xcb-util-devel \ 0015 centos-release-scl \ 0016 make \ 0017 gettext \ 0018 squashfs-tools \ 0019 chrpath \ 0020 which \ 0021 mesa-libGL-devel \ 0022 mesa-libEGL-devel \ 0023 libXcomposite-devel \ 0024 libXcursor-devel \ 0025 alsa-lib-devel \ 0026 libXi-devel \ 0027 libXtst-devel \ 0028 libXrandr-devel \ 0029 xcb-util-keysyms-devel \ 0030 gperf \ 0031 flex \ 0032 bison \ 0033 libgcrypt-devel \ 0034 systemd-devel 0035 0036 RUN yum -y install devtoolset-4-gcc-c++ 0037 0038 RUN wget -O cmake-install https://cmake.org/files/v3.11/cmake-3.11.1-Linux-x86_64.sh && \ 0039 chmod +x cmake-install && \ 0040 ./cmake-install --skip-license --prefix=/usr && \ 0041 rm cmake-install 0042 0043 COPY setup.sh /root/setup.sh 0044 COPY qt-installer-noninteractive.qs /root/qt-installer-noninteractive.qs 0045 RUN scl enable devtoolset-4 /root/setup.sh 0046 0047 COPY build.sh /root/build.sh 0048 COPY build-appimage.sh /root/build-appimage.sh 0049 0050 ENTRYPOINT ["/root/build.sh"]