Skip to content

Commit d82a1c5

Browse files
author
Stoian Minaiev
committed
docker: add git system package to image
1 parent c82dee2 commit d82a1c5

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

docker/.gitpod.Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ RUN apt-get update -qq \
1919
libffi-dev \
2020
libssl-dev \
2121
python3-dev \
22+
git \
2223
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*;
2324

25+
# Git needed for PROJECT_GIT_COMMIT_HASH variable setting
26+
2427
# Needs to be installed as root
2528
RUN pip3 install adafruit-nrfutil
2629
RUN pip3 install -Iv cryptography==3.3

docker/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ RUN apt-get update -qq \
1919
libssl-dev \
2020
python3-dev \
2121
python \
22+
git \
2223
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*;
2324

25+
# Git needed for PROJECT_GIT_COMMIT_HASH variable setting
26+
2427
RUN pip3 install adafruit-nrfutil
2528
RUN pip3 install -Iv cryptography==3.3
2629

0 commit comments

Comments
 (0)