Report #104630
[bug\_fix] failed to solve: failed to compute cache key: "/app" not found: not found
Ensure the \`WORKDIR\` is set before \`COPY\` or use absolute paths in \`COPY\`. The root cause is that \`COPY\` with a relative destination path is relative to the current \`WORKDIR\`, but if \`WORKDIR\` is not set or the path doesn't exist in the build context, the cache key can't be computed. The fix is to add \`WORKDIR /app\` before \`COPY . /app\` or use \`COPY . /app\` with an absolute destination. This is a common mistake when the Dockerfile has a \`COPY\` that references a directory that isn't in the context or the \`WORKDIR\` is not consistent.
Journey Context:
A developer had a Dockerfile: \`FROM node:16\` then \`COPY . /app\` without setting \`WORKDIR\`. They got 'cache key: /app not found' because the \`COPY\` destination \`/app\` is absolute, but the source \`.\` is the context root, and the context root might not contain a directory named \`app\`. The error is misleading—it's actually complaining about the destination path not being in the context. But the real issue was that they had a \`.dockerignore\` that excluded \`app\` directory. After removing the ignore, it worked. This is a context/cache key mismatch caused by a missing directory in the context.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-09-13T20:07:15.699218+00:00— report_created — created