From 6b9c7fd0fd6f814a5cd5ab9dce3daf72f85d8909 Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Tue, 30 Apr 2024 13:05:27 +0000 Subject: [PATCH 1/2] Update docker file --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 97d10b7..33dbe10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ # limitations under the License. ## creating building container -FROM python:3.10.9-slim-bullseye AS builder +FROM python:3.12-slim-bookworm AS builder # update and install dependencies RUN apt update RUN apt upgrade -y @@ -26,7 +26,7 @@ WORKDIR /service RUN python -m build # creating running container -FROM python:3.10.9-slim-bullseye +FROM python:3.12-slim-bookworm # update and install dependencies RUN apt update RUN apt upgrade -y From d6be461f88e00bf0dea7d1963f41e93cd01086cc Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Tue, 30 Apr 2024 13:07:02 +0000 Subject: [PATCH 2/2] Mark script utils as static --- .template/static_files.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.template/static_files.txt b/.template/static_files.txt index 1efe4d5..1cf9790 100644 --- a/.template/static_files.txt +++ b/.template/static_files.txt @@ -15,6 +15,8 @@ scripts/script_utils/__init__.py scripts/script_utils/cli.py +scripts/script_utils/deps.py +scripts/script_utils/lock_deps.py scripts/__init__.py scripts/update_all.py