summaryrefslogtreecommitdiff
path: root/.devcontainer/Dockerfile
diff options
context:
space:
mode:
authorNiall Cooling <niallcooling@gmail.com>2021-02-25 16:18:08 +0000
committerTim Keller <geekboy1011@gmail.com>2021-08-07 17:17:38 +0000
commit65423b3c945002b5828f8be3b42e27bc9c83d8b4 (patch)
tree86602c09c6bb53384631613d3559e2027a5773bd /.devcontainer/Dockerfile
parent57b339707861c5688f5d432f1506a99df6bb0fce (diff)
added devcontainer files
Diffstat (limited to '.devcontainer/Dockerfile')
-rw-r--r--.devcontainer/Dockerfile43
1 files changed, 43 insertions, 0 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
new file mode 100644
index 00000000..c6a3588f
--- /dev/null
+++ b/.devcontainer/Dockerfile
@@ -0,0 +1,43 @@
+FROM ubuntu:18.04
+
+ARG DEBIAN_FRONTEND=noninteractive
+RUN apt-get update -qq \
+ && apt-get install -y \
+# x86_64 / generic packages
+ bash \
+ build-essential \
+ cmake \
+ git \
+ make \
+ python3 \
+ python3-pip \
+ tar \
+ unzip \
+ wget \
+ curl \
+# aarch64 packages
+ libffi-dev \
+ libssl-dev \
+ python3-dev \
+ 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
+
+WORKDIR /opt/
+# build.sh knows how to compile
+COPY build.sh .
+
+# Lets get each in a separate docker layer for better downloads
+# GCC
+RUN bash -c "source /opt/build.sh; GetGcc;"
+# NrfSdk
+RUN bash -c "source /opt/build.sh; GetNrfSdk;"
+# McuBoot
+RUN bash -c "source /opt/build.sh; GetMcuBoot;"
+
+ENV SOURCES_DIR /workspaces/Pinetime