From 7fac9a857b21081f796916e6a56dc425cf2b64de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Wilczy=C5=84ski?= Date: Wed, 1 Mar 2023 17:49:56 +0900 Subject: [PATCH] Update base and builder images release tags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Krzysztof WilczyƄski --- dockerfiles/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index c066873f19..6a814cc3a5 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/app-sre/qontract-reconcile-builder:0.3.8 as build-image +FROM quay.io/app-sre/qontract-reconcile-builder:0.3.9 as build-image WORKDIR /work @@ -15,7 +15,7 @@ RUN python3 -m pip install --no-cache-dir --upgrade pip setuptools wheel && \ python3 -m pip wheel . --wheel-dir /work/wheels -FROM quay.io/app-sre/qontract-reconcile-base:0.8.9 as dev-image +FROM quay.io/app-sre/qontract-reconcile-base:0.8.10 as dev-image ARG CONTAINER_UID=1000 RUN useradd --uid ${CONTAINER_UID} reconcile @@ -44,7 +44,7 @@ VOLUME ["/work"] CMD [ "/work/dev/run.sh" ] -FROM quay.io/app-sre/qontract-reconcile-base:0.8.9 as prod-image +FROM quay.io/app-sre/qontract-reconcile-base:0.8.10 as prod-image # Cache mount. We don't need te wheel files in the final image. # This COPY will create a layer with all the wheel files to install the app.