diff options
| author | Michael Meier <mmeier1986@gmail.com> | 2026-06-04 22:18:23 +0200 |
|---|---|---|
| committer | Michael Meier <mmeier1986@gmail.com> | 2026-06-04 22:18:23 +0200 |
| commit | a5a1f44441d79f0a0792b08e6912d67d1bd51380 (patch) | |
| tree | 9da9b021125c0d4077f6e0fcbaa6958c0d671645 /.dockerignore | |
| parent | ff15bf708386389c95ca908da5c0a17fe01e47e9 (diff) | |
Docker: Fix YaCy version determination
The .dockerignore file was preventing the .git directory from being
copied into the context during container builds, which prevented ant
from determining the YaCy version by running a few git commands.
This fixes containerized YaCy peer's version showing up as:
yacy_v1.941_fatal: not a git repository (or any of the parent directories):
.gitfatal: not a git repository (or any of the parent directories):
.git_fatal: not a git repository (or any of the parent directories): .git
Diffstat (limited to '.dockerignore')
| -rw-r--r-- | .dockerignore | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.dockerignore b/.dockerignore index 484cdc123..1d935f75c 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,3 @@ -.git .github DATA* RELEASE |
