We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14291b4 commit 65daf0fCopy full SHA for 65daf0f
1 file changed
odin/Dockerfile
@@ -6,10 +6,8 @@ FROM 100hellos/000-base:local
6
RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/main" | sudo tee -a /etc/apk/repositories
7
RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/community" | sudo tee -a /etc/apk/repositories
8
9
-# Install LLVM and Clang for building Odin (git and make already in base)
10
-RUN sudo apk update
11
-RUN sudo apk add --no-cache \
12
- llvm-dev \
+RUN sudo apk update && sudo apk add --no-cache \
+ llvm20-dev \
13
clang
14
15
# Create directory and clone/build Odin from source
0 commit comments