diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-08-22 10:11:31 +0200 |
---|---|---|
committer | Miloslav Trmač <mitr@redhat.com> | 2022-08-29 18:51:31 +0200 |
commit | 68ebf13d48be39b3509601527395f8ec2d56a329 (patch) | |
tree | 3791829f5a86b4bfc6a597a74ccf454c443ffb63 | |
parent | 1845046c160de2f95d2bcc0869f8f407c7205114 (diff) | |
download | podman-68ebf13d48be39b3509601527395f8ec2d56a329.tar.gz podman-68ebf13d48be39b3509601527395f8ec2d56a329.tar.bz2 podman-68ebf13d48be39b3509601527395f8ec2d56a329.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>
-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 |