Browse Source

Install SSH and GPG into container

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
parent
commit
9b29f9b861
No known key found for this signature in database
GPG Key ID: FA1E9B15C71BD7FC
  1. 8
      .devcontainer/Dockerfile
  2. 2
      .devcontainer/devcontainer.json

8
.devcontainer/Dockerfile

@ -0,0 +1,8 @@ @@ -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/*

2
.devcontainer/devcontainer.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"name": "ZMK Development",
"image": "zmkfirmware/zephyr-west-action-arm",
"dockerFile": "Dockerfile",
"extensions": ["ms-vscode.cpptools"],
"runArgs": ["--security-opt", "label=disable"]
}

Loading…
Cancel
Save