From 492d8275e7ef9500866f868fe68c9ecabd96c392 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Thu, 27 Aug 2026 10:31:34 -0400 Subject: [PATCH] add git to containerfile --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index 6127617..90352ec 100644 --- a/Containerfile +++ b/Containerfile @@ -41,6 +41,7 @@ ENV PATH="/app/.venv/bin:$PATH" \ PYTHONDONTWRITEBYTECODE=1 \ BOR_STATIC_DIR=/app/static \ BOR_ENVIRONMENT=production +RUN apt update && apt install -y git RUN useradd --create-home --uid 10001 reese WORKDIR /app COPY --from=python /app/.venv /app/.venv