From 687243d0ba9d368796da213bb83262ad66bc0b77 Mon Sep 17 00:00:00 2001 From: xicilion Date: Sat, 7 Oct 2023 20:39:26 +0800 Subject: [PATCH] build, refactor: update docker image to clang-12. --- dockerfiles/linux-build-env.amd64 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dockerfiles/linux-build-env.amd64 b/dockerfiles/linux-build-env.amd64 index 40b91574c..5ae0c483e 100644 --- a/dockerfiles/linux-build-env.amd64 +++ b/dockerfiles/linux-build-env.amd64 @@ -1,7 +1,8 @@ FROM ubuntu:20.04 RUN apt-get update && apt-get install sudo -y && apt-get install make -y && \ - apt-get install cmake -y && apt-get install ccache -y && apt-get install git -y && \ - apt-get install libx11-dev -y && apt-get install clang -y && apt-get install g++ -y + apt-get install cmake -y && apt-get install ccache -y && apt-get install git -y && \ + apt-get install libx11-dev -y && apt-get install clang -y && \ + apt-get install clang-12 -y && apt-get install g++ -y RUN adduser fibjs -q && chmod 777 /root \ No newline at end of file