[CI/Build] remove .github from .dockerignore, add dirty repo check (#9375)

This commit is contained in:
Daniele
2024-10-17 19:25:06 +02:00
committed by GitHub
parent 81ede99ca4
commit a2c71c5405
12 changed files with 54 additions and 17 deletions
+3
View File
@@ -117,6 +117,9 @@ RUN --mount=type=cache,target=${CCACHE_DIR} \
FROM base AS final
# Import the vLLM development directory from the build context
COPY . .
ARG GIT_REPO_CHECK=0
RUN --mount=type=bind,source=.git,target=.git \
if [ "$GIT_REPO_CHECK" != 0 ]; then bash tools/check_repo.sh ; fi
# Package upgrades for useful functionality or to avoid dependency issues
RUN --mount=type=cache,target=/root/.cache/pip \