Skip to content

Commit

Permalink
add clang-19 for chromium
Browse files Browse the repository at this point in the history
  • Loading branch information
NelsonDane committed Dec 6, 2024
1 parent b49ef42 commit 0387189
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,17 @@ ENV DEBIAN_FRONTEND=noninteractive
# Default display to :99
ENV DISPLAY=:99

# Install python, pip, and tzdata
# Chromium requires Clang-19
RUN apt-get update && apt-get install -y --no-install-recommends \
gnupg \
lsb-release \
software-properties-common \
wget \
&& rm -rf /var/lib/apt/lists/*
RUN wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && ./llvm.sh 19
RUN ln -s /usr/bin/clang-19 /usr/bin/clang

# Install other dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
chromium \
chromium-driver \
Expand Down

0 comments on commit 0387189

Please sign in to comment.