summaryrefslogtreecommitdiff
path: root/.devcontainer
diff options
context:
space:
mode:
authorAzureAD\NiallCooling <niall.cooling@feabhas.com>2021-02-25 17:16:01 +0000
committerTim Keller <geekboy1011@gmail.com>2021-08-07 17:17:38 +0000
commit273a94f298cc96a1415499d00559fed3a741af71 (patch)
treecfb224e93eabac14992c2eec7fb7339202b40b0f /.devcontainer
parent65423b3c945002b5828f8be3b42e27bc9c83d8b4 (diff)
removed dependency on build.sh
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/Dockerfile17
1 files changed, 12 insertions, 5 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index c6a3588f..7e961528 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -22,8 +22,6 @@ RUN apt-get update -qq \
rustc \
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*;
-RUN adduser infinitime
-
RUN pip3 install adafruit-nrfutil
# required for McuBoot
RUN pip3 install setuptools_rust
@@ -34,10 +32,19 @@ COPY build.sh .
# Lets get each in a separate docker layer for better downloads
# GCC
-RUN bash -c "source /opt/build.sh; GetGcc;"
+# RUN bash -c "source /opt/build.sh; GetGcc;"
+RUN wget https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2020q2/gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2 -O - | tar -xj -C /opt
+# RUN rm gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2
# NrfSdk
-RUN bash -c "source /opt/build.sh; GetNrfSdk;"
+# RUN bash -c "source /opt/build.sh; GetNrfSdk;"
+RUN wget -q "https://developer.nordicsemi.com/nRF5_SDK/nRF5_SDK_v15.x.x/nRF5_SDK_15.3.0_59ac345.zip" -O /tmp/nRF5_SDK_15.3.0_59ac345
+RUN unzip -q /tmp/nRF5_SDK_15.3.0_59ac345 -d /opt
+RUN rm /tmp/nRF5_SDK_15.3.0_59ac345
# McuBoot
-RUN bash -c "source /opt/build.sh; GetMcuBoot;"
+# RUN bash -c "source /opt/build.sh; GetMcuBoot;"
+RUN git clone https://github.com/JuulLabs-OSS/mcuboot.git
+RUN pip3 install -r ./mcuboot/scripts/requirements.txt
+
+RUN adduser infinitime
ENV SOURCES_DIR /workspaces/Pinetime