From 6fa0c0450fa29b2db2d1f15bfdc368b2af97d51e Mon Sep 17 00:00:00 2001 From: Maroun Touma Date: Fri, 6 Dec 2024 06:18:30 -0500 Subject: [PATCH] added login to quay.io Signed-off-by: Maroun Touma --- transforms/.make.cicd.targets | 2 ++ 1 file changed, 2 insertions(+) diff --git a/transforms/.make.cicd.targets b/transforms/.make.cicd.targets index 23475f57f..e77715b80 100644 --- a/transforms/.make.cicd.targets +++ b/transforms/.make.cicd.targets @@ -61,6 +61,7 @@ test-image-spark: $(MAKE) BUILD_SPECIFIC_RUNTIME=spark test-image test-image:: .default.build-lib-wheel + $(DOCKER) login $(DOCKER_HOSTNAME) -u '$(DOCKER_REGISTRY_USER)' -p '$(DOCKER_REGISTRY_KEY)' @if [ -z "$(BUILD_SPECIFIC_RUNTIME)" ] || [ "$(BUILD_SPECIFIC_RUNTIME)" == "python" ]; then \ if [ -e Dockerfile.python ]; then \ $(MAKE) DOCKER_FILE=Dockerfile.python \ @@ -101,6 +102,7 @@ image-spark: image:: .default.build-lib-wheel ## Build all possible images unless a specific runtime is specified + $(DOCKER) login $(DOCKER_HOSTNAME) -u '$(DOCKER_REGISTRY_USER)' -p '$(DOCKER_REGISTRY_KEY)' @if [ -z "$(BUILD_SPECIFIC_RUNTIME)" ] || [ "$(BUILD_SPECIFIC_RUNTIME)" == "python" ]; then \ if [ -e Dockerfile.python ]; then \ $(MAKE) DOCKER_FILE=Dockerfile.python \