@ledgerhq/vault-cli 1.41.1 → 1.41.2

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @ledgerhq/vault-cli@1.41.1 build /home/runner/work/vault-ts/vault-ts/apps/cli
2
+ > @ledgerhq/vault-cli@1.41.2 build /home/runner/work/vault-ts/vault-ts/apps/cli
3
3
  > tsc && chmod +x bin/index.js
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @ledgerhq/vault-cli
2
2
 
3
+ ## 1.41.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 6c97b23: Dummy patch to ensure that Docker image still builds
8
+
3
9
  ## 1.41.1
4
10
 
5
11
  ### Patch Changes
package/Dockerfile CHANGED
@@ -1,6 +1,8 @@
1
- FROM node:16-alpine
2
- RUN apk add python3 build-base libusb-dev linux-headers eudev-dev openssl git
3
- RUN yarn global add @ledgerhq/vault-cli
4
- ENV TERM xterm-256color
5
- RUN apk add --no-cache bash
6
- ENTRYPOINT [ "/usr/local/bin/ledger-vault" ]
1
+ FROM ghcr.io/ledgerhq/node/builder:16 as builder
2
+
3
+ RUN yarn add @ledgerhq/vault-cli
4
+
5
+ FROM ghcr.io/ledgerhq/node:16
6
+
7
+ COPY --from=builder $WORKDIR/node_modules $WORKDIR/node_modules
8
+ ENTRYPOINT [ "node_modules/.bin/ledger-vault" ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/vault-cli",
3
- "version": "1.41.1",
3
+ "version": "1.41.2",
4
4
  "description": "A various utility command-line for Vault development",
5
5
  "homepage": "https://github.com/LedgerHQ/vault-ts",
6
6
  "license": "BSD-2-Clause",