From 434bd09f6e374f0d81fa2360be0242bfafa8eeea Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Thu, 20 May 2021 22:05:24 +0100 Subject: [PATCH] feat(dev): add socat Required for piping serial over IP. PR: zmkfirmware/zmk-docker#55 --- .github/workflows/containers.yml | 2 ++ Dockerfile | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index e13c6cc..2c1398c 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -404,6 +404,8 @@ jobs: run: ssh -V - name: Test gdb run: gdb --version + - name: Test socat + run: socat -V - name: Stop container shell: bash run: docker stop candidate diff --git a/Dockerfile b/Dockerfile index 83a3f96..2d051df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -64,6 +64,7 @@ RUN \ python3-setuptools \ python3-tk \ python3-wheel \ + socat \ ssh \ wget \ xz-utils \