|
|
@@ -4,6 +4,12 @@ MAINTAINER Ben Boeckel <[email protected]>
|
|
|
COPY install_rvm.sh /root/install_rvm.sh
|
|
|
RUN sh /root/install_rvm.sh
|
|
|
|
|
|
+FROM fedora:36 AS clang-tidy-headers
|
|
|
+MAINTAINER Kyle Edwards <[email protected]>
|
|
|
+
|
|
|
+COPY install_clang_tidy_headers.sh /root/install_clang_tidy_headers.sh
|
|
|
+RUN sh /root/install_clang_tidy_headers.sh
|
|
|
+
|
|
|
FROM fedora:36
|
|
|
MAINTAINER Ben Boeckel <[email protected]>
|
|
|
|
|
|
@@ -13,3 +19,6 @@ RUN sh /root/install_deps.sh
|
|
|
COPY --from=rvm-build /root/rvm.tar /root/rvm.tar
|
|
|
RUN tar -C /usr/local -xf /root/rvm.tar \
|
|
|
&& rm /root/rvm.tar
|
|
|
+COPY --from=clang-tidy-headers /root/clang-tidy-headers.tar /root/clang-tidy-headers.tar
|
|
|
+RUN tar -C /usr/include -xf /root/clang-tidy-headers.tar \
|
|
|
+ && rm /root/clang-tidy-headers.tar
|