Nubiecloud Docs
Troubleshooting & FAQ

A build fails — checklist

Diagnose and fix a failing build on Nubiecloud.

When a build turns failed, the cause is almost always in the build logs (split by step). Here are the most useful checks.

1. Read the logs

Open the build → logs, and spot the step that fails (fetching the code, building the image…). The error message there is explicit.

2. Frequent causes

Symptom in the logsLikely causeFix
Dockerfile not foundwrong Dockerfile path or wrong source folderfix the Dockerfile path / the source folder (monorepo) in the build configuration
Dependency installation failsmissing dependency or incompatible versionfix the dependency file in your repository
Branch / commit not foundthe branch given does not existcheck the branch when starting the build
Access denied to the repositoryexpired or revoked tokenreconnect the repository (see Connecting a repository)
Unsuitable strategyBuildpacks does not detect the language, or a Dockerfile is expectedchoose the right strategy (Dockerfile vs Buildpacks)

3. Check the build configuration

  • Strategy: Dockerfile if you provide a Dockerfile; Buildpacks otherwise.
  • Source folder: for a monorepo, point at the right subfolder (e.g. services/api).
  • Dockerfile path: relative to the source folder.
  • Build variables: present if your build needs them.

See Automatic builds (configuration).

4. Restart

After fixing things (in the repository or in the configuration), restart the build. Follow the logs again.

See also

On this page