diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-08-22 10:11:31 +0200 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-08-22 10:12:25 +0200 |
commit | 1f76ad40a953d37d4a0c12f6434a5e8a32b53e81 (patch) | |
tree | 18dc988a8585cfb909017b11c8a981886f89ba8a /test/apiv2/10-images.at | |
parent | 31bb53f5ffccfa98e991901417b06fc6ab7b19d9 (diff) | |
download | podman-1f76ad40a953d37d4a0c12f6434a5e8a32b53e81.tar.gz podman-1f76ad40a953d37d4a0c12f6434a5e8a32b53e81.tar.bz2 podman-1f76ad40a953d37d4a0c12f6434a5e8a32b53e81.zip |
fix CI: remove hardcodeded alpine version
The apiv2 test hardcoded the tag of the alpine image.
Remove it to unblock CI.
Fixes: #15388
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'test/apiv2/10-images.at')
-rw-r--r-- | test/apiv2/10-images.at | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/apiv2/10-images.at b/test/apiv2/10-images.at index f03b95786..4fd954e37 100644 --- a/test/apiv2/10-images.at +++ b/test/apiv2/10-images.at @@ -203,7 +203,7 @@ t POST "build?dockerfile=containerfile" $CONTAINERFILE_TAR application/json 200 # Libpod: allow building from url: https://github.com/alpinelinux/docker-alpine.git and must ignore any provided tar t POST "libpod/build?remote=https%3A%2F%2Fgithub.com%2Falpinelinux%2Fdocker-alpine.git" $CONTAINERFILE_TAR 200 \ - .stream~"STEP 1/5: FROM alpine:3.14" + .stream~"STEP 1/5: FROM alpine:" # Build api response header must contain Content-type: application/json t POST "build?dockerfile=containerfile" $CONTAINERFILE_TAR application/json 200 |