@ledgerhq/vault-cli 1.19.4 → 1.19.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +12 -0
- package/Dockerfile +2 -1
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
package/Dockerfile
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
FROM node:16-alpine
|
|
2
|
+
ARG VERSION
|
|
2
3
|
RUN apk add python3 build-base libusb-dev linux-headers eudev-dev
|
|
3
|
-
RUN yarn global add @ledgerhq/vault-cli
|
|
4
|
+
RUN yarn global add @ledgerhq/vault-cli@${VERSION}
|
|
4
5
|
ENV TERM xterm-256color
|
|
5
6
|
RUN apk add --no-cache bash
|
|
6
7
|
ENTRYPOINT [ "/usr/local/bin/ledger-vault" ]
|