From ff670b380e2785f3771d4e479d282ddd928b7716 Mon Sep 17 00:00:00 2001 From: Quinn Date: Wed, 8 Oct 2025 15:10:37 +0000 Subject: [PATCH 1/2] Change task package to task; note that task corresponds to task docker-images:package --- docs/src/dev-docs/building-package.md | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/docs/src/dev-docs/building-package.md b/docs/src/dev-docs/building-package.md index 2964063a4e..57f5786e14 100644 --- a/docs/src/dev-docs/building-package.md +++ b/docs/src/dev-docs/building-package.md @@ -51,11 +51,16 @@ Both flavours contain the same binaries but are configured with different values To build the package, run: ```shell -task package +task ``` The build will be in `build/clp-package` and defaults to using the storage engine for `clp-text`. +:::{note} +The `task` command runs `task docker-images:package` under the hood. In addition to the build, a +Docker image named `clp-package:dev` will also be created. +::: + To build a releasable tar of either flavour, run: ```shell @@ -75,16 +80,6 @@ To clean up all build artifacts, run: task clean ``` -## Building a Docker image - -To build a Docker image containing the CLP package, run: - -```shell -task docker-images:package -``` - -This will create a Docker image named `clp-package:dev`. - [Docker]: https://docs.docker.com/engine/install/ [Task]: https://taskfile.dev/ [uv]: https://docs.astral.sh/uv/ From 1356f26eae3296aeab6f44681624801ed8062436 Mon Sep 17 00:00:00 2001 From: Quinn Date: Thu, 9 Oct 2025 12:06:47 -0400 Subject: [PATCH 2/2] Junhao comment --- docs/src/dev-docs/building-package.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/dev-docs/building-package.md b/docs/src/dev-docs/building-package.md index 57f5786e14..528a53dd7f 100644 --- a/docs/src/dev-docs/building-package.md +++ b/docs/src/dev-docs/building-package.md @@ -58,7 +58,7 @@ The build will be in `build/clp-package` and defaults to using the storage engin :::{note} The `task` command runs `task docker-images:package` under the hood. In addition to the build, a -Docker image named `clp-package:dev` will also be created. +Docker image named `clp-package:dev--` will also be created. ::: To build a releasable tar of either flavour, run: