Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 645 Bytes

File metadata and controls

22 lines (17 loc) · 645 Bytes

Thistle-in-browser containers in WASM format

This is a repository served as storage for TIB containers. It's supposed to be used as a submodule for the tib-demo repo.

Due to GitHub's per-file size limit, one needs to split a large image (e.g., input.wasm) into smaller chunks (e.g., 50MB):

On Linux

# Split input.wasm into 50MB chunks with GNU split
split -b 52428800 --additional-suffix .wasm -d input.wasm tib-1.2.0_

On macOS

# Split input.wasm into 50MB chunks with gsplit
brew install coreutils
gsplit -b 52428800 --additional-suffix .wasm -d input.wasm tib-1.2.0_