Initial Commit
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM ubuntu:24.04
|
||||
|
||||
WORKDIR /build
|
||||
RUN apt update -y
|
||||
RUN apt install -y cmake curl wget cppcheck
|
||||
|
||||
RUN wget https://apt.llvm.org/llvm.sh && \
|
||||
chmod +x llvm.sh && \
|
||||
./llvm.sh 20
|
||||
|
||||
ADD runchecks.sh /entrypoint.sh
|
||||
COPY . .
|
||||
RUN chmod +x /entrypoint.sh
|
||||
ENTRYPOINT /entrypoint.sh
|
||||
Reference in New Issue
Block a user