Actually bump podman build timeout

I tried to bump it before, but set it to 90, which is the default.
Sigh. So this is an actual bump. It looks like until 20201124 this
took about 80 seconds, now it's taking like 93.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2020-12-04 10:02:43 -08:00
parent 089638bb7a
commit 4c27140794
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ sub run {
# create a Dockerfile
assert_script_run 'printf \'FROM registry.fedoraproject.org/fedora:latest\nRUN /usr/bin/dnf install -y httpd\nEXPOSE 80\nCMD ["-D", "FOREGROUND"]\nENTRYPOINT ["/usr/sbin/httpd"]\n\' > Dockerfile';
# Build an image
assert_script_run 'podman build -t fedora-httpd $(pwd)', 90;
assert_script_run 'podman build -t fedora-httpd $(pwd)', 120;
# Verify the image
validate_script_output "podman images", sub { m/fedora-httpd/ };
# Run the container