summaryrefslogtreecommitdiff
path: root/.devcontainer/Dockerfile
diff options
context:
space:
mode:
authorIdan Gazit <idan@gazit.me>2020-10-01 06:52:33 +0000
committerIdan Gazit <idan@gazit.me>2020-10-09 18:54:27 -0700
commit9b29f9b861464a8a0eba78f25058cded118b84d5 (patch)
tree7dbe8c373c30d5ac0a625889dff6022c2bdeae82 /.devcontainer/Dockerfile
parent5bd09b586e153185850fe468b19fdd0eb534f35d (diff)
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!
Diffstat (limited to '.devcontainer/Dockerfile')
-rw-r--r--.devcontainer/Dockerfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
new file mode 100644
index 0000000..abbe54a
--- /dev/null
+++ b/.devcontainer/Dockerfile
@@ -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/* \ No newline at end of file