summaryrefslogtreecommitdiff
path: root/.gitlab/ci/docker/clang_cxx_modules/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab/ci/docker/clang_cxx_modules/Dockerfile')
-rw-r--r--.gitlab/ci/docker/clang_cxx_modules/Dockerfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitlab/ci/docker/clang_cxx_modules/Dockerfile b/.gitlab/ci/docker/clang_cxx_modules/Dockerfile
new file mode 100644
index 0000000000..4e58125fea
--- /dev/null
+++ b/.gitlab/ci/docker/clang_cxx_modules/Dockerfile
@@ -0,0 +1,13 @@
+FROM fedora:37
+MAINTAINER Ben Boeckel <ben.boeckel@kitware.com>
+
+# Install build dependencies for packages.
+COPY install_deps.sh /root/install_deps.sh
+RUN sh /root/install_deps.sh
+
+COPY install_llvm.sh /root/install_llvm.sh
+RUN sh /root/install_llvm.sh
+
+# Install build dependencies for CMake's CI.
+COPY install_cmake_deps.sh /root/install_cmake_deps.sh
+RUN sh /root/install_cmake_deps.sh