From 5449780fb0f7bf70fd00286e37990d95088edda9 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Fri, 14 Oct 2022 14:21:34 -0700 Subject: [PATCH] Fixup jinja-init image This image was still using our old python-base:3.7 image. We don't update that image anymore and it should be updated to 3.9 or newer which we do here. Note I don't think anything currently uses this image as it was for k8s related gitea deployments. Change-Id: I0436e9ab52e47247f2f6f6727c812ff8dff9ee9d --- docker/jinja-init/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/jinja-init/Dockerfile b/docker/jinja-init/Dockerfile index ed5e0749bf..ed7ec95b5d 100644 --- a/docker/jinja-init/Dockerfile +++ b/docker/jinja-init/Dockerfile @@ -25,7 +25,7 @@ WORKDIR /src/jinja-init RUN git checkout 8c13a44124a5a363519df787b1cd0abd1198b8df -FROM docker.io/opendevorg/python-base:3.7 as jinja-init +FROM docker.io/opendevorg/python-base:3.9-bullseye as jinja-init RUN pip install jinja2