diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2017-08-31 17:49:33 +0200 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2017-08-31 17:49:33 +0200 |
commit | 4ce10fda963579d395881710ff1ae8713f5f2782 (patch) | |
tree | 9d90512e13383d08c58a5c4775d87ae8a9a4880a | |
parent | abcdbe2d5e0e30b1cb158633af2821b111a8980a (diff) | |
download | gitlab-ce-4ce10fda963579d395881710ff1ae8713f5f2782.tar.gz |
Move apt-get quiet flag in the beginning
-rw-r--r-- | doc/articles/test_and_deploy_laravel_apps_with_gitlab_ci_and_envoy/index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/articles/test_and_deploy_laravel_apps_with_gitlab_ci_and_envoy/index.md b/doc/articles/test_and_deploy_laravel_apps_with_gitlab_ci_and_envoy/index.md index 946f20c5f18..18e42d9f52a 100644 --- a/doc/articles/test_and_deploy_laravel_apps_with_gitlab_ci_and_envoy/index.md +++ b/doc/articles/test_and_deploy_laravel_apps_with_gitlab_ci_and_envoy/index.md @@ -410,7 +410,7 @@ FROM php:7.1 RUN apt-get update # Install PHP and composer dependencies -RUN apt-get install git curl libmcrypt-dev libjpeg-dev libpng-dev libfreetype6-dev libbz2-dev -yqq +RUN apt-get install -qq git curl libmcrypt-dev libjpeg-dev libpng-dev libfreetype6-dev libbz2-dev # Clear out the local repository of retrieved package files RUN apt-get clean |