From edbe96249207e96a7b86103225d56c489c892bd5 Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Tue, 15 Jun 2021 15:40:24 +0100 Subject: [PATCH] feat(dev-generic): add `ENV ZEPHYR_SDK_VERSION` Lets scripts (outside of the Zephyr bubble) locate the SDK. PR: zmkfirmware/zmk-docker#82 --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index d48721d..b378eb1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -73,6 +73,9 @@ RUN \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* +ARG ZEPHYR_SDK_VERSION +ENV ZEPHYR_SDK_VERSION=${ZEPHYR_SDK_VERSION} + ENV DEBIAN_FRONTEND= #------------------------------------------------------------------------------