14 lines
548 B
Docker
14 lines
548 B
Docker
FROM debian:sid-slim
|
|
RUN apt-get -y update && \
|
|
apt-get -y upgrade && \
|
|
apt-get -y install build-essential clang-19 gcc-14 g++-14 python3 python3-pip \
|
|
virtualenv python-is-python3 clang-tidy git ninja-build cmake
|
|
RUN ln -s /usr/bin/clang-19 /usr/local/bin/clang \
|
|
&& ln -s /usr/bin/clang++-19 /usr/local/bin/clang++ \
|
|
&& ln -s /usr/bin/clang-tidy-19 /usr/local/bin/clang-tidy \
|
|
&& ln -s /usr/bin/run-clang-tidy-19 /usr/local/bin/run-clang-tidy
|
|
|
|
COPY scripts /opt/scripts
|
|
|
|
RUN chmod a+x /opt/scripts/*.sh
|