From 3c21ef9c5ca0cc884dd63c830a2cb11d5ebcee5d Mon Sep 17 00:00:00 2001 From: Jesse Hitch Date: Sun, 20 Oct 2024 14:54:26 +0200 Subject: [PATCH] Update Dockerfile - pin version of debian in docker container --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 7294a65..f96e2bf 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ -FROM debian:bookworm +FROM debian:12.7 -ENV BW_CLI_VERSION=2024.6.0 +ENV BW_CLI_VERSION=2024.9.0 RUN apt update && \ apt list --upgradeable | grep security | cut -f1 -d '/' | xargs apt-get install --no-install-recommends -y && \