From 24b6734e723483d67ba3c8f65f2454215e5e93ed Mon Sep 17 00:00:00 2001 From: Albert Peschar Date: Wed, 22 Sep 2021 07:27:25 +0300 Subject: [PATCH] Remove sync call from README example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2038c78..47689d6 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ FROM php:7.2-cli ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ -RUN chmod +x /usr/local/bin/install-php-extensions && sync && \ +RUN chmod +x /usr/local/bin/install-php-extensions && \ install-php-extensions gd xdebug ```