Skip to content

Commit bfd6548

Browse files
authored
[Feature:Autograding] add image for clang 14 (#58)
### What is the new behavior? Adds a dockerfile for clang 14 (also bumps to ubuntu 22). This version will work on ARM (previous version only worked on x86) Co-authored-by: Barb Cutler <Barb Cutler>
1 parent 3bd6397 commit bfd6548

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

dockerfiles/clang/14/Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM ubuntu:22.04
2+
3+
# installing requirements to get and extract prebuilt binaries
4+
RUN apt-get update
5+
RUN apt-get install -y clang-14 lld-14
6+
RUN rm -rf /var/lib/apt/lists/*
7+
8+
# symlink
9+
RUN ln -s /usr/bin/clang++-14 /usr/bin/clang++

dockerfiles/clang/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"pushLatest": true,
3-
"latestTag": "10"
3+
"latestTag": "14"
44
}

0 commit comments

Comments
 (0)