summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorJF002 <JF002@users.noreply.github.com>2021-05-16 09:37:39 (GMT)
committerGitHub <noreply@github.com>2021-05-16 09:37:39 (GMT)
commit5b2472c4bc84bbdd5e8326ea7562f6bc133cf00e (patch)
tree7b78058f711164ab36890c2acccb56c8e7ac6e91 /docker
parentb5884397191964a3bc080bd4c6953e2b00a564a9 (diff)
parenta4de61e1f5c7842d25bac0cfb22e4a9f0bff671c (diff)
Merge pull request #347 from jedi2light/feature-show-git-commit-hash-short
Feature: Store and show git short ref on PineTime alongside other firmware information
Diffstat (limited to 'docker')
-rw-r--r--docker/.gitpod.Dockerfile3
-rw-r--r--docker/Dockerfile3
2 files changed, 6 insertions, 0 deletions
diff --git a/docker/.gitpod.Dockerfile b/docker/.gitpod.Dockerfile
index 2f7099a..4fbc7be 100644
--- a/docker/.gitpod.Dockerfile
+++ b/docker/.gitpod.Dockerfile
@@ -19,8 +19,11 @@ RUN apt-get update -qq \
libffi-dev \
libssl-dev \
python3-dev \
+ git \
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*;
+# Git needed for PROJECT_GIT_COMMIT_HASH variable setting
+
# Needs to be installed as root
RUN pip3 install adafruit-nrfutil
RUN pip3 install -Iv cryptography==3.3
diff --git a/docker/Dockerfile b/docker/Dockerfile
index a6caa24..0a4f69f 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -19,8 +19,11 @@ RUN apt-get update -qq \
libssl-dev \
python3-dev \
python \
+ git \
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*;
+# Git needed for PROJECT_GIT_COMMIT_HASH variable setting
+
RUN pip3 install adafruit-nrfutil
RUN pip3 install -Iv cryptography==3.3