From b58880cff6549998820a704b139007bd2e6774b3 Mon Sep 17 00:00:00 2001 From: Anton Ukhanev Date: Mon, 14 Jun 2021 17:42:49 +0200 Subject: [PATCH] Discard local changes on initial install Composer will now ignore and discard local changes on initial installation of dependencies. Fix #5. --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index cbd9a12..3e2596e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -36,4 +36,4 @@ FROM build as vendor-dev ARG BUILD_ROOT_PATH WORKDIR ${BUILD_ROOT_PATH} -RUN composer install +RUN COMPOSER_DISCARD_CHANGES=true composer install