Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nedseb authored Oct 8, 2024
1 parent e8de44c commit 66248ae
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
FROM letssteam/arm-gcc-none-eabi-toolchain:latest

RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections && \
apt install lsb-release wget software-properties-common gnupg && \
wget https://apt.llvm.org/llvm.sh && \
chmod u+x llvm.sh && \
./llvm.sh 19 && \
rm -rf ./llvm.sh
apt-get update && \
apt-get upgrade -y -q && \
apt-get install -y -q \
lsb-release \
wget \
software-properties-common \
gnupg && \
wget https://apt.llvm.org/llvm.sh && \
chmod u+x llvm.sh && \
./llvm.sh 19 && \
rm -rf ./llvm.sh

# Install any needed packages by codal
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections && \
Expand Down

0 comments on commit 66248ae

Please sign in to comment.