github.com/pachyderm/pachyderm@v1.13.4/doc/docs/1.11.x/how-tos/developer-workflow/build-flag.md (about) 1 # The Build Flag 2 3 The `--build` flag is one way to improve development speed when working with pipelines. Unlike [build pipelines](build-pipelines.md), this method still uses docker images. This feature is particularly useful if you want to continue to work with docker images, e.g. because your team is accustomed to them, or because you need the added flexibility. 4 5 The `--build` flag performs the following steps: 6 7 1. Builds the Docker image specified in the pipeline 8 1. Gives the images a unique tag 9 1. Pushes the Docker image to the registry 10 1. Updates the image tag in the pipeline spec json to match the new image 11 1. Submits the updated pipeline to the Pachyderm cluster 12 13 The usage of the flag is shown below: 14 15 ```shell 16 pachctl update pipeline -f <pipeline name> --build --registry <registry> --username <registry user> 17 ``` 18 19 !!! note 20 For more details on the `--build` flag, see [Update a Pipeline](../../updating_pipelines/#update-the-code-in-a-pipeline).