initial commit

This commit is contained in:
2026-05-10 22:23:47 +04:00
commit 6ce4c7997d
4 changed files with 48 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM danger89/cmake:latest
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y curl gnupg jq git \
&& 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 && npm -v && cppcheck --version && clang-format --version