Skip to content

Commit

Permalink
build, refactor: update docker image to clang-12.
Browse files Browse the repository at this point in the history
  • Loading branch information
xicilion committed Oct 7, 2023
1 parent c526167 commit 687243d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions 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

0 comments on commit 687243d

Please sign in to comment.