From 239d7f33ed8647cfdd4d96c8b3aed4d2f1a93ca4 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Thu, 7 Mar 2024 12:56:58 +0530 Subject: [PATCH] Document BuildKit requirement See https://github.com/ente-io/ente/issues/712 --- cli/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cli/README.md b/cli/README.md index 849dbdaac6..fc241cb6d8 100644 --- a/cli/README.md +++ b/cli/README.md @@ -81,6 +81,10 @@ Build the docker image docker build -t ente:latest . ``` +Note that [BuildKit](https://docs.docker.com/go/buildkit/) is needed to build +this image. If you face this issue, a quick fix is to add `DOCKER_BUILDKIT=1` in +front of the build command. + Start the container in detached mode ```shell