From d5dd9d66e24e18afa62a3cbac1be4e87899b358e Mon Sep 17 00:00:00 2001 From: Webb Scales Date: Wed, 24 Apr 2024 17:18:22 -0400 Subject: [PATCH] Remove digest hashes from base container references --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 199f365..8ec625e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG package=arcaflow_plugin_template_python # STAGE 1 -- Build module dependencies and run tests # The 'poetry' and 'coverage' modules are installed and verson-controlled in the # quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase image to limit drift -FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase:0.4.0@sha256:26f5d506f0750e0cad636afbe7ddd8cade09937eb5abae784096e46a1d4ae030 as build +FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-buildbase:0.4.0 as build ARG package COPY poetry.lock /app/ @@ -26,7 +26,7 @@ RUN python -m coverage run tests/test_${package}.py \ # STAGE 2 -- Build final plugin image -FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-osbase:0.4.0@sha256:6674b5d2aa5de565b1d39a9c1694ad7ca15b57d06f33529bc3a6f4d6e76b100e +FROM quay.io/arcalot/arcaflow-plugin-baseimage-python-osbase:0.4.0 ARG package COPY --from=build /app/requirements.txt /app/