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/*