summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2021-01-23 16:41:29 (GMT)
committerGitea <gitea@fake.local>2021-01-23 16:41:29 (GMT)
commit76ab14fa5f7979dd764b449396dc5835a286ec6d (patch)
tree846b39f9c412854c57fd15cc37e920b7affa28c5 /docker
parent1d940af924bac5728a4d494f780e298e5b67b707 (diff)
parent84b509ed9536e081f370d2fd7c519c9ed6acfea4 (diff)
Merge branch 'develop' of JF/PineTime into master
Diffstat (limited to 'docker')
-rw-r--r--docker/.gitpod.Dockerfile39
1 files changed, 39 insertions, 0 deletions
diff --git a/docker/.gitpod.Dockerfile b/docker/.gitpod.Dockerfile
new file mode 100644
index 0000000..71bf479
--- /dev/null
+++ b/docker/.gitpod.Dockerfile
@@ -0,0 +1,39 @@
+FROM gitpod/workspace-full
+
+USER root
+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 \
+# aarch64 packages
+ libffi-dev \
+ libssl-dev \
+ python3-dev \
+ && rm -rf /var/cache/apt/* /var/lib/apt/lists/*;
+
+# Needs to be installed as root
+RUN pip3 install adafruit-nrfutil
+
+COPY docker/build.sh /opt/
+# 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;"
+
+# Link the default checkout workspace in to the default $SOURCES_DIR
+RUN ln -s /workspace/Pinetime /sources
+
+USER gitpod \ No newline at end of file