aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBen V. Brown <[email protected]>2020-05-30 13:28:21 +1000
committerBen V. Brown <[email protected]>2020-05-30 13:28:21 +1000
commit24f6da9b50254a2cdb737848bcf05ff06e151f91 (patch)
tree7b32f0943d5ce236ab97f7c9906f2eabb6e78f24
parent37d03bdb1703a7fc65a412f9f667d6e20a24be5f (diff)
downloadIronOS-24f6da9b50254a2cdb737848bcf05ff06e151f91.tar.gz
IronOS-24f6da9b50254a2cdb737848bcf05ff06e151f91.zip
Update to newest compiler from ARM
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 8e07117d..7b9e0762 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -12,10 +12,10 @@ RUN apt-get update && \
bzip2 \
python3 \
wget && \
- apt-get clean && \
- wget -qO- https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2 | tar -xj
+ apt-get clean
+RUN wget -qO- https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/9-2020q2/gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2 | tar -xj
# Add compiler to the path
-ENV PATH "/build/gcc-arm-none-eabi-9-2019-q4-major/bin:$PATH"
+ENV PATH "/build/gcc-arm-none-eabi-9-2020-q2-update/bin:$PATH"
COPY . /build/source
COPY ./ci /build/ci