2024-01-25 23:32:17 +08:00
|
|
|
FROM toxchat/c-toxcore:sources AS sources
|
2023-12-27 03:39:22 +08:00
|
|
|
FROM alpine:3.19.0
|
|
|
|
|
|
|
|
RUN ["apk", "add", "--no-cache", \
|
|
|
|
"bash", \
|
|
|
|
"clang", \
|
|
|
|
"clang-extra-tools", \
|
|
|
|
"cmake", \
|
2023-12-27 07:56:54 +08:00
|
|
|
"colordiff", \
|
2023-12-27 03:39:22 +08:00
|
|
|
"libconfig-dev", \
|
|
|
|
"libsodium-dev", \
|
|
|
|
"libvpx-dev", \
|
|
|
|
"linux-headers", \
|
|
|
|
"opus-dev", \
|
|
|
|
"pkgconfig", \
|
|
|
|
"samurai"]
|
|
|
|
|
|
|
|
ENV CC=clang CXX=clang++
|
|
|
|
|
2024-01-25 23:32:17 +08:00
|
|
|
COPY --from=sources /src/ /c-toxcore/
|
|
|
|
COPY other/analysis/run-clang-tidy other/analysis/variants.sh /c-toxcore/other/analysis/
|
|
|
|
COPY .clang-tidy /c-toxcore/
|
2023-12-27 09:43:03 +08:00
|
|
|
WORKDIR /c-toxcore
|
2023-12-27 03:39:22 +08:00
|
|
|
RUN other/analysis/run-clang-tidy
|