Reduce verbosity of composer install
in application-production-dependencies
stage
#481
Labels
composer install
in application-production-dependencies
stage
#481
What is the problem you are trying to solve by the feature?
Building images produces a lot of output. This might not be noticed in environments where the type of progress output of docker compose is
tty
but in our CI pipelines the output type isplain
. The log output of the pipeline job that runsdocker/sdk export images
is about 1.4 MiB in our case and most of it is because this line:docker-sdk/images/baked/application/Dockerfile
Line 14 in 6f1a737
What is the solution do you propose?
Remove the
-vvv
from the line mentioned above.What changes in deploy.yml format do you propose?
None.
What changes in command line interface do you propose?
None.
What alternatives have you considered?
Setting the environment variable
PROGRESS_TYPE
toquiet
instead ofplain
in our pipeline jobs. But having some output would be nice.The text was updated successfully, but these errors were encountered: