Skip to content

Commit 0fc020d

Browse files
authored
Merge pull request #10 from laminas/fix/#8-remove-git-dir-from-being-added-to-docker-container
#8 #9 disable adding `.git` during `Dockerfile` steps
2 parents 6dc90e1 + ef5e910 commit 0fc020d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ ADD composer.lock /app/composer.lock
3030

3131
RUN COMPOSER_CACHE_DIR=/dev/null composer install --no-dev --no-autoloader
3232

33-
ADD .git /app/.git
33+
# @TODO https://github.com/laminas/automatic-releases/issues/8 we skip `.git` for now, as it isn't available in the build environment
34+
# @TODO https://github.com/laminas/automatic-releases/issues/9 we skip `.git` for now, as it isn't available in the build environment
35+
#ADD .git /app/.git
3436
ADD bin /app/bin
3537
ADD src /app/src
3638

0 commit comments

Comments
 (0)