mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
14 lines
389 B
Docker
14 lines
389 B
Docker
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
|