From 33a1f6cfeeb1e2b6d1561e55e2eb0d17310e1f6f Mon Sep 17 00:00:00 2001 From: Paul Wieland <4663918+PaulWieland@users.noreply.github.com> Date: Wed, 12 Nov 2025 12:19:57 -0500 Subject: [PATCH 1/4] Switch to python:slim-bullseye docker build fails because the apt packages for buster have been archived. updating image to use bullseye. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eae6dc1..cf119ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ #FROM ubuntu:20.04 -FROM python:buster +FROM python:slim-bullseye MAINTAINER Walt Howd From e88ae2414e24d472375da5bb6f899728fd9e51c0 Mon Sep 17 00:00:00 2001 From: Paul Wieland <4663918+PaulWieland@users.noreply.github.com> Date: Wed, 12 Nov 2025 12:21:05 -0500 Subject: [PATCH 2/4] Update pip install command for bellows package git:// timing out --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cf119ce..5225c69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ WORKDIR /tmp/silabs RUN apt-get update \ && apt-get install -y git wget python3-pip unzip jq curl -RUN pip3 install --upgrade git+git://github.com/zigpy/bellows.git +RUN pip3 install --upgrade https://github.com/zigpy/bellows.git RUN pip3 install pyserial xmodem From 711aa18e60acfd73f1a1f93aeec66d87bbdf2dde Mon Sep 17 00:00:00 2001 From: Paul Wieland <4663918+PaulWieland@users.noreply.github.com> Date: Wed, 12 Nov 2025 12:22:43 -0500 Subject: [PATCH 3/4] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5225c69..cba75ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ WORKDIR /tmp/silabs RUN apt-get update \ && apt-get install -y git wget python3-pip unzip jq curl -RUN pip3 install --upgrade https://github.com/zigpy/bellows.git +RUN pip3 install --upgrade git+https://github.com/zigpy/bellows.git RUN pip3 install pyserial xmodem From 397e6bd3b79cc2cf6f4d4a25901c0188ce6fd3ae Mon Sep 17 00:00:00 2001 From: Paul Wieland <4663918+PaulWieland@users.noreply.github.com> Date: Wed, 12 Nov 2025 12:25:41 -0500 Subject: [PATCH 4/4] slim missing dev files --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cba75ea..88567d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ #FROM ubuntu:20.04 -FROM python:slim-bullseye +FROM python:bullseye MAINTAINER Walt Howd