From 6c37d8f20241e812f47d1ff5205b7ac04633f3ad Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 23 Apr 2024 09:01:43 -0700 Subject: [PATCH] Rebuild our base python images This is our semi regular python base image rebuild. This ensures we're running relatively up to date python builds as well as base system packages (though many of our image builds update the base system too). Change-Id: Ice918219a64bd5845de9dc3330bf292261c6a80e --- docker/python-base/Dockerfile | 2 +- docker/python-builder/Dockerfile | 2 +- docker/uwsgi-base/Dockerfile | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/python-base/Dockerfile b/docker/python-base/Dockerfile index 55e160f106..f049e82bef 100644 --- a/docker/python-base/Dockerfile +++ b/docker/python-base/Dockerfile @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Comment to force rebuilds Sun Feb 4 04:04:35 PM UTC 2024 +# Comment to force rebuilds Tue Apr 23 04:00:46 PM UTC 2024 ARG PYTHON_VERSION=3.11 ARG DEBIAN_VERSION=bookworm diff --git a/docker/python-builder/Dockerfile b/docker/python-builder/Dockerfile index 64a9952eea..bac4881a6c 100644 --- a/docker/python-builder/Dockerfile +++ b/docker/python-builder/Dockerfile @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Comment to force rebuilds Sun Feb 4 04:04:35 PM UTC 2024 +# Comment to force rebuilds Tue Apr 23 04:00:46 PM UTC 2024 ARG PYTHON_VERSION=3.11 ARG DEBIAN_VERSION=bookworm diff --git a/docker/uwsgi-base/Dockerfile b/docker/uwsgi-base/Dockerfile index 3ae2945768..651e9cc4c9 100644 --- a/docker/uwsgi-base/Dockerfile +++ b/docker/uwsgi-base/Dockerfile @@ -13,6 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +# Comment to force rebuilds Tue Apr 23 04:00:46 PM UTC 2024 + ARG PYTHON_VERSION=3.11 ARG DEBIAN_VERSION=bookworm FROM docker.io/opendevorg/python-builder:${PYTHON_VERSION}-${DEBIAN_VERSION} as builder