TGP17
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
10 additions and
0 deletions
-
linux-appimage/Dockerfile
-
linux-fresh/Dockerfile
|
|
@ -54,6 +54,13 @@ RUN apt-get install -y \ |
|
|
glslang-tools \ |
|
|
glslang-tools \ |
|
|
file |
|
|
file |
|
|
|
|
|
|
|
|
|
|
|
# Install LLVM 15 |
|
|
|
|
|
RUN wget https://apt.llvm.org/llvm.sh |
|
|
|
|
|
RUN chmod +x llvm.sh |
|
|
|
|
|
RUN ./llvm.sh 15 all |
|
|
|
|
|
RUN update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-15 150 |
|
|
|
|
|
RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 150 |
|
|
|
|
|
|
|
|
# Download tools for building AppImages |
|
|
# Download tools for building AppImages |
|
|
RUN wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage |
|
|
RUN wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage |
|
|
RUN wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage |
|
|
RUN wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage |
|
|
|
|
|
@ -10,10 +10,13 @@ RUN apt-get install -y \ |
|
|
# Tools |
|
|
# Tools |
|
|
build-essential \ |
|
|
build-essential \ |
|
|
ccache \ |
|
|
ccache \ |
|
|
|
|
|
clang \ |
|
|
clang-format-15 \ |
|
|
clang-format-15 \ |
|
|
cmake \ |
|
|
cmake \ |
|
|
curl \ |
|
|
curl \ |
|
|
git \ |
|
|
git \ |
|
|
|
|
|
lld \ |
|
|
|
|
|
llvm \ |
|
|
ninja-build \ |
|
|
ninja-build \ |
|
|
p7zip-full \ |
|
|
p7zip-full \ |
|
|
python3-pip \ |
|
|
python3-pip \ |
|
|
|