diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-06-11 06:25:06 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-06-24 14:08:57 -0400 |
commit | 90805fa39fbd89e343cdbcd0f97edec1bc635a51 (patch) | |
tree | ff9d7524a479870c7f398850635c4374547a2885 /test/system/070-build.bats | |
parent | 854c27c0a02f1c2e3d8ebd2473f639e6bd9b5251 (diff) | |
download | podman-90805fa39fbd89e343cdbcd0f97edec1bc635a51.tar.gz podman-90805fa39fbd89e343cdbcd0f97edec1bc635a51.tar.bz2 podman-90805fa39fbd89e343cdbcd0f97edec1bc635a51.zip |
Add support for podman remote build -f - .
Fixes: https://github.com/containers/podman/issues/10621
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/system/070-build.bats')
-rw-r--r-- | test/system/070-build.bats | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/system/070-build.bats b/test/system/070-build.bats index 40622d6cc..6843e28a5 100644 --- a/test/system/070-build.bats +++ b/test/system/070-build.bats @@ -29,6 +29,29 @@ EOF run_podman rmi -f build_test } +@test "podman build test -f -" { + rand_filename=$(random_string 20) + rand_content=$(random_string 50) + + tmpdir=$PODMAN_TMPDIR/build-test + mkdir -p $tmpdir + containerfile=$PODMAN_TMPDIR/Containerfile + cat >$containerfile <<EOF +FROM $IMAGE +RUN apk add nginx +RUN echo $rand_content > /$rand_filename +EOF + + # The 'apk' command can take a long time to fetch files; bump timeout + PODMAN_TIMEOUT=240 run_podman build -t build_test -f - --format=docker $tmpdir < $containerfile + is "$output" ".*STEP 4: COMMIT" "COMMIT seen in log" + + run_podman run --rm build_test cat /$rand_filename + is "$output" "$rand_content" "reading generated file in image" + + run_podman rmi -f build_test +} + @test "podman build - global runtime flags test" { skip_if_remote "--runtime-flag flag not supported for remote" |