rt/Dockerfile

13 lines
176 B
Docker

FROM debian:bookworm
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y \
clang \
llvm \
scons
RUN useradd rt
USER rt