mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2026-01-12 12:26:44 +00:00
The goal is to keep the devcontainer image minimal and its build time as fast as possible. - Remove all rarely used tools. - Change the base image to the latest template. - Synchronize the WASI-SDK and WABT versions with those used by the CI. Add libzstd for LLVM linking
13 lines
319 B
Bash
13 lines
319 B
Bash
echo "Running finalize script..."
|
|
|
|
#
|
|
# Python Package Installation
|
|
#
|
|
|
|
# Upgrade pip first
|
|
python3 -m pip install --no-cache-dir --break-system-packages --upgrade pip
|
|
# Install required packages
|
|
pip3 install --no-cache-dir --break-system-packages -r .devcontainer/requirements.txt
|
|
|
|
echo "Finalize script completed. ✅"
|