浏览代码

Use a client image with curl for testing.
The jetty image may not have curl since there is an alpine variant.

JACQUES Francois 9 年之前
父节点
当前提交
b5fc1577de
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      test/tests/jetty-hello-web/run.sh

+ 2 - 2
test/tests/jetty-hello-web/run.sh

@@ -8,8 +8,8 @@ dir="$(dirname "$(readlink -f "$BASH_SOURCE")")"
 
 image="$1"
 
-# Use the image being tested as our client image since it should already have curl
-clientImage="$image"
+# Use a client image with curl for testing
+clientImage="buildpack-deps:curl"
 
 # Create an instance of the container-under-test
 serverImage="$("$dir/../image-name.sh" librarytest/jetty-hello-web "$image")"