<?php $animation = new LoadingAnimation($io);
do {
$animation->tick('Retrieving the stack');
usleep(100 * 1000);
} while ($serverlessInfo->isRunning());
$animation->clear();
<?php $dockerPull->start();
do {
$animation->tick('Retrieving the latest version of the dashboard');
usleep(100 * 1000);
} while ($dockerPull->isRunning());
$animation->clear();
if (! $dockerPull->isSuccessful()) {