You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by on...@apache.org on 2021/04/21 19:24:41 UTC

[geode] 01/02: fix image download search order

This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.12
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 8d82434c967f73a7348673f4332d9100e3835637
Author: Owen Nichols <on...@apache.org>
AuthorDate: Wed Apr 21 11:45:11 2021 -0700

    fix image download search order
---
 docker/Dockerfile | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/docker/Dockerfile b/docker/Dockerfile
index 5a8f302..d43c4f8 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -51,9 +51,7 @@ RUN set -eux; \
 	; do \
 		target="$(basename "$file")"; \
 		for url in \
-# https://issues.apache.org/jira/browse/INFRA-8753?focusedCommentId=14735394#comment-14735394
-			"https://www.apache.org/dyn/closer.cgi?action=download&filename=$file" \
-			"https://downloads.apache.org/dist/$file" \
+			"https://downloads.apache.org/$file" \
 			"https://archive.apache.org/dist/$file" \
 		; do \
 			if wget -O "$target" "$url"; then \