From e81e37ad43dc0c239d19cdb0f4e66fb1474b80d1 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 3 Oct 2023 16:21:28 -0700 Subject: [PATCH] Update our base container images There are new pythons and other things we should update to pull in. Change-Id: I5430e4b6e17861049d2dd60e88bf330595388e23 --- docker/python-base/Dockerfile | 3 ++- docker/python-builder/Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/python-base/Dockerfile b/docker/python-base/Dockerfile index c75b638b54..df24c5c0e9 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 Jul 16 23:06:17 UTC 2023 +# Comment to force rebuilds Tue Oct 3 04:19:33 PM PDT 2023 ARG PYTHON_VERSION=3.11 ARG DEBIAN_VERSION=bullseye @@ -24,6 +24,7 @@ ARG DEBIAN_VERSION RUN echo 'APT::Install-Recommends "0";' > /etc/apt/apt.conf.d/95disable-recommends RUN apt-get update \ + && apt-get dist-upgrade -y \ && apt-get install -y dumb-init \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ diff --git a/docker/python-builder/Dockerfile b/docker/python-builder/Dockerfile index 16537e54bd..a2b36cfa92 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 Jul 16 23:06:17 UTC 2023 +# Comment to force rebuilds Tue Oct 3 04:19:33 PM PDT 2023 ARG PYTHON_VERSION=3.11 ARG DEBIAN_VERSION=bullseye @@ -21,6 +21,7 @@ FROM docker.io/library/python:${PYTHON_VERSION}-slim-${DEBIAN_VERSION} as fake-p WORKDIR /tmp RUN apt-get update \ + && apt-get dist-upgrade -y \ && apt-get install -y curl equivs \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*