From ff7ef761d0d9e7a5204c854e4db4fae63bf7acee Mon Sep 17 00:00:00 2001 From: Peter Johanson Date: Mon, 5 Jun 2023 10:31:54 -0700 Subject: [PATCH] feat: Move ssh to build package. * Some builds might need to pull extra west modules/sub-modules over SSH, so move that package to the build image. Fixes: #142 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1546761..8703b7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,7 @@ RUN \ python3-pip \ python3-setuptools \ python3-wheel \ + ssh \ && pip3 install \ -r https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/v${ZEPHYR_VERSION}/scripts/requirements-base.txt \ && pip3 install cmake \ @@ -65,7 +66,6 @@ RUN \ python3-tk \ python3-wheel \ socat \ - ssh \ tio \ wget \ xz-utils \