From d800d27ef1b77b56d8e5d085e54cadb9fd34fb7b Mon Sep 17 00:00:00 2001 From: Karsten Sperling Date: Tue, 21 May 2024 17:05:15 +1200 Subject: [PATCH] Don't prepend STAGING_DIR_HOST to PATH This causes the OpenWrt prereq-build step to get confused since it is looking for host binaries on PATH and then symlinks them into that directory. --- .containers/matter-openwrt-build/Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/.containers/matter-openwrt-build/Dockerfile b/.containers/matter-openwrt-build/Dockerfile index 6fd5b93..a32875a 100644 --- a/.containers/matter-openwrt-build/Dockerfile +++ b/.containers/matter-openwrt-build/Dockerfile @@ -6,8 +6,6 @@ LABEL org.opencontainers.image.description="Pre-warmed OpenWrt SDK" ARG SRC_PACKAGES="glib2 openssl ubus" ARG CFG_PACKAGES="glib2 libopenssl libubus" -# Add host tools from WORKDIR (/builder) to PATH -ENV PATH="/builder/staging_dir/host/bin:$PATH" RUN set -x && \ grep -w 'base\|packages' feeds.conf.default > feeds.conf && \ ./scripts/feeds update -a && \