(workPath: string)
| 109 | * sentinel. |
| 110 | */ |
| 111 | export function findDockerfile(workPath: string): string | undefined { |
| 112 | return DOCKERFILE_CANDIDATES.find(name => existsSync(join(workPath, name))); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Stable local image tag for `vercel dev`. Used by both the `build()` path |
no test coverage detected