-
Notifications
You must be signed in to change notification settings - Fork 0
v3.0.0 #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v3.0.0 #5
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,9 +6,12 @@ RUN apt-get update && apt-get install -y \ | |
| g++ \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
| WORKDIR /app | ||
| COPY package*.json ./ | ||
| # Copy alfred first (dependency) | ||
| COPY alfred ../alfred | ||
| # Copy empty-graph | ||
| COPY empty-graph/package*.json ./ | ||
| RUN npm install | ||
| COPY . . | ||
| COPY empty-graph . | ||
|
Comment on lines
+9
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. CI build failure: The pipeline reports: The Dockerfile expects
Potential solutions:
#!/bin/bash
# Verify the expected directory structure and CI configuration
echo "=== Checking for monorepo indicators ==="
# Look for workspace configuration
cat package.json 2>/dev/null | jq '.workspaces // "no workspaces defined"'
# Check if there's a parent package.json that might define workspaces
if [ -f ../package.json ]; then
echo "=== Parent package.json found ==="
cat ../package.json | jq '.workspaces // "no workspaces"'
fi
# Check CI workflow files for context
echo "=== CI workflow configuration ==="
fd -e yml -e yaml . .github/workflows --exec cat {} \; 2>/dev/null | head -100🧰 Tools🪛 GitHub Actions: CI[error] 10-10: Docker build failed: COPY alfred ../alfred could not be performed. '/alfred' not found in build context. 🤖 Prompt for AI Agents |
||
| ENV GIT_STUNTS_DOCKER=1 | ||
| # Default to tests, but can be overridden for benchmark | ||
| CMD ["npm", "test"] | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix release date to keep chronology consistent.
Line 10 lists 2025-01-30, which is out of sequence with the 2026 entries below.
✏️ Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents