diff --git a/.changeset/stupid-nails-happen.md b/.changeset/stupid-nails-happen.md new file mode 100644 index 00000000..ff3c8f50 --- /dev/null +++ b/.changeset/stupid-nails-happen.md @@ -0,0 +1,5 @@ +--- +"@cartesi/cli": patch +--- + +stop using bsdtar diff --git a/apps/cli/src/commands/build.ts b/apps/cli/src/commands/build.ts index 40d3f677..996cec34 100644 --- a/apps/cli/src/commands/build.ts +++ b/apps/cli/src/commands/build.ts @@ -203,13 +203,7 @@ Update your application Dockerfile using one of the templates at https://github. "crane", "export", "-", // OCI Image from stdin - "-", // rootfs tarball to stdout - "|", - "bsdtar", - "-cf", - "/tmp/output", - "--format=gnutar", - "@/dev/stdin", // rootfs tarball from stdin + "/tmp/output", // rootfs tarball ]; return ["/usr/bin/env", "bash", "-c", cmd.join(" ")]; }