Browse Source
Brings back the dockerfile so we can install SSH and GPG into it. This fixes git actions with SSH remotes, and GPG signing now works out of the box. This commit was made from inside the container!xmkb
Idan Gazit
4 years ago
2 changed files with 9 additions and 1 deletions
@ -0,0 +1,8 @@ |
|||||||
|
from zmkfirmware/zephyr-west-action-arm |
||||||
|
|
||||||
|
RUN apt-get -y update && \ |
||||||
|
apt-get -y upgrade && \ |
||||||
|
apt-get install --no-install-recommends -y \ |
||||||
|
ssh \ |
||||||
|
gpg && \ |
||||||
|
rm -rf /var/lib/apt/lists/* |
Loading…
Reference in new issue