From 2929310d0805f450139cb22c7366c8bbbb3cccf3 Mon Sep 17 00:00:00 2001 From: Jeff Culverhouse Date: Wed, 29 Oct 2025 02:02:43 -0600 Subject: [PATCH] chore: we need git in order to get my helper packages --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e889795..69718cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,14 @@ ARG VERSION ENV AMCREST2MQTT_VERSION=${VERSION} ENV SETUPTOOLS_SCM_PRETEND_VERSION_FOR_AMCREST2MQTT=${VERSION} -# Install uv +# Install uv and git - and get updates too RUN pip install uv +RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* + +RUN apt-get update && \ + apt-get install -y git && \ + apt-get upgrade -y && \ + rm -rf /var/lib/apt/lists/* # copy source COPY --exclude=.git . .