Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docker/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ ARG LLVM_VERSION=20

ENV DEBIAN_FRONTEND=noninteractive

WORKDIR /

RUN groupadd -r user && \
useradd -r -g user -m -d /home/user -s /bin/bash user

USER user
WORKDIR /user

# Build tooling + clang/LLVM pinned from apt.llvm.org. g++ is installed so the
# address/undefined jobs (which use clang with the default libstdc++) have the
# standard library headers available.
Expand Down