forked from ARM-software/LLVM-embedded-toolchain-for-Arm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,16 @@ | ||
FROM ubuntu:22.04 | ||
LABEL maintainer "Pawel Wodnicki <[email protected]>" | ||
LABEL org.opencontainers.image.source=https://github.com/32bitmicro/LLVM-Embedded-Toolchain | ||
LABEL org.opencontainers.image.description="LLVM Embedded Toolchain LLVM-ETOOOL image" | ||
LABEL org.opencontainers.image.licenses=Apache | ||
|
||
|
||
RUN apt-get -o Acquire::ForceIPv4=true update && apt-get -o Acquire::ForceIPv4=true install -y \ | ||
build-essential \ | ||
git \ | ||
cmake \ | ||
ninja-build \ | ||
make \ | ||
llvm llvm-dev \ | ||
clang clang-tools \ | ||
lldb \ | ||
lld \ | ||
libc++-dev libc++abi-dev \ | ||
python3-minimal python3-pip\ | ||
wget \ | ||
software-properties-common | ||
|
||
ADD build-from-public-repos.sh /tmp | ||
WORKDIR /tmp | ||
RUN /tmp/build-from-public-repos.sh |