commit 0a36d020f75c72030d51148d2334442f48fa165c parent 8494fb100d5b9af80cb10cda487a593899906076 Author: Sebastian <sebasjm@gmail.com> Date: Wed, 3 Sep 2025 11:59:58 -0300 more instructions Diffstat:
| M | README | | | 24 | ++++++++++++++++++++++++ |
1 file changed, 24 insertions(+), 0 deletions(-)
diff --git a/README b/README @@ -202,4 +202,28 @@ make anastasis-webui-dist It creates the zip file named `anastasis-webui.zip` +## Building expored release in a container + +First create a container with a base image, copy the release tar file and get inside the virtual machine. + +```shell +podman pull ubuntu:24.04 +podman container create --name builder ubuntu:24.04 sleep infinity +podman container start builder +podman container cp taler-wallet-v*.tar.gz test-build:/root/ +podman exec -it -w /root test-build /bin/bash +``` + +Then inside the vm make sure you have the required software and follow the instruction for building. + +Installing requirements + +```shell +apt update && apt install -y nodejs curl vim less python3 make zip jq npm +npm install --global corepack +tar xzf taler-wallet-v*.tar.gz +cd taler-wallet-v* +corepack enable pnpm +pnpm --version +```