# Can you install the doppler CLI in the Vercel build environment?

**URL:** https://community.doppler.com/t/can-you-install-the-doppler-cli-in-the-vercel-build-environment/1452
**Category:** Discussions
**Created:** [January 23, 2024, 6:14pm UTC](https://community.doppler.com/t/can-you-install-the-doppler-cli-in-the-vercel-build-environment/1452 "2024-01-23T18:14:38Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![alexbjorlig](https://sea2.discourse-cdn.com/flex016/user_avatar/community.doppler.com/alexbjorlig/32/441_2.png) [@alexbjorlig](https://community.doppler.com/u/alexbjorlig)
#### Post date: [January 23, 2024, 6:14pm UTC](https://community.doppler.com/t/can-you-install-the-doppler-cli-in-the-vercel-build-environment/1452/1 "2024-01-23T18:14:39Z")

</div>

Pretty much the title - is this possible?

---

<div class="post-metadata">

### Author: ![watsonian](https://sea2.discourse-cdn.com/flex016/user_avatar/community.doppler.com/watsonian/32/267_2.png) [@watsonian](https://community.doppler.com/u/watsonian)
#### Post date: [January 23, 2024, 7:54pm UTC](https://community.doppler.com/t/can-you-install-the-doppler-cli-in-the-vercel-build-environment/1452/2 "2024-01-23T19:54:56Z")

</div>

@alexbjorlig The Doppler CLI is a single binary. Assuming the build environment has either curl or wget to fetch our install script at [https://cli.doppler.com/install.sh](https://cli.doppler.com/install.sh) and the `gpg` binary available (i.e., the `gnupg` package), then you should be able to install it pretty easily by making your build command a script and then having your script fetch and execute the install script like this:

```shell
(curl -Ls --tlsv1.2 --proto "=https" --retry 3 https://cli.doppler.com/install.sh || wget -t 3 -qO- https://cli.doppler.com/install.sh) | sh -s -- --debug --install-path /some/path/you/can/write/to

```

If you don’t have the `gnupg` package available, you could still fetch the binary directly from our site here:

[https://cli.doppler.com/download](https://cli.doppler.com/download)

The binary is available in tar archives there. Once you have the binary downloaded, you just need to add it to the `PATH` or execute it using its full path.

Will that work for you?
