We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3853868 commit 8bfb5adCopy full SHA for 8bfb5ad
Dockerfile
@@ -391,7 +391,7 @@ RUN set -eux; \
391
find /app/.venv -name "__pycache__" -type d -exec rm -rf {} + 2>/dev/null || true; \
392
# Remove test directories from installed packages (but preserve prisma binaries)
393
# These directories contain test files that are not needed in production
394
- for test_dir in tests testing "*test*"; do \
+ for test_dir in tests testing "test*"; do \
395
find /app/.venv -name "$test_dir" -type d -not -path "*/prisma*" -exec rm -rf {} + 2>/dev/null || true; \
396
done; \
397
# Remove documentation files from installed packages (but preserve prisma docs)
0 commit comments