From ef5e910390c48106a18cc251e2440f04518e70d5 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Sun, 19 Jul 2020 23:35:36 +0200 Subject: [PATCH] #8 #9 disable adding `.git` during `Dockerfile` steps This fixes #8, but skips version rendering in our CLI: that's an acceptable tradeoff, for now: we'll need to fix this later, when we work on #9 (or eventually consider dropping this code entirely). --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9815facb..e68705a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,9 @@ ADD composer.lock /app/composer.lock RUN COMPOSER_CACHE_DIR=/dev/null composer install --no-dev --no-autoloader -ADD .git /app/.git +# @TODO https://github.com/laminas/automatic-releases/issues/8 we skip `.git` for now, as it isn't available in the build environment +# @TODO https://github.com/laminas/automatic-releases/issues/9 we skip `.git` for now, as it isn't available in the build environment +#ADD .git /app/.git ADD bin /app/bin ADD src /app/src