Files
cmusthaves/Dockerfile
T
karina c847f9ac91
Build and Push Custom Image / build (push) Successful in 3m31s
fix
2026-05-10 23:30:57 +04:00

17 lines
411 B
Docker

FROM danger89/cmake:latest
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
curl \
gnupg \
jq \
git \
clang-tidy \
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y nodejs \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN node -v && cppcheck --version && clang-format --version && clang-tidy --version