Skip to content

Commit 8bfb5ad

Browse files
committed
fix(Dockerfile): fix regex false positive matching githubkit code
*latest* matches githubkit.versions.latest
1 parent 3853868 commit 8bfb5ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ RUN set -eux; \
391391
find /app/.venv -name "__pycache__" -type d -exec rm -rf {} + 2>/dev/null || true; \
392392
# Remove test directories from installed packages (but preserve prisma binaries)
393393
# These directories contain test files that are not needed in production
394-
for test_dir in tests testing "*test*"; do \
394+
for test_dir in tests testing "test*"; do \
395395
find /app/.venv -name "$test_dir" -type d -not -path "*/prisma*" -exec rm -rf {} + 2>/dev/null || true; \
396396
done; \
397397
# Remove documentation files from installed packages (but preserve prisma docs)

0 commit comments

Comments
 (0)