From 8fd2857a8e31eb822e190fdae63a8b2245af041e Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Fri, 19 Feb 2021 11:10:17 -0800 Subject: [PATCH] Build some new python base images This change adds comments to the python-base and python-builder dockerfiles to force a rebuild of these images. We do this periodically to pull in updates. Change-Id: I109a46603a74a376cc36fdfbd35734f6dc835abe --- docker/python-base/Dockerfile | 2 ++ docker/python-builder/Dockerfile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docker/python-base/Dockerfile b/docker/python-base/Dockerfile index 60158d9522..33d4a6f0e0 100644 --- a/docker/python-base/Dockerfile +++ b/docker/python-base/Dockerfile @@ -13,6 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +# Comment to force rebuilds 2021-02-19 19:09UTC + ARG PYTHON_VERSION=3.7 FROM docker.io/library/python:${PYTHON_VERSION}-slim diff --git a/docker/python-builder/Dockerfile b/docker/python-builder/Dockerfile index 176f8fc125..fe966fb519 100644 --- a/docker/python-builder/Dockerfile +++ b/docker/python-builder/Dockerfile @@ -13,6 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +# Comment to force rebuilds 2021-02-19 19:09UTC + ARG PYTHON_VERSION=3.7 FROM docker.io/library/python:${PYTHON_VERSION}-slim as fake-python