wasm-micro-runtime/.devcontainer/finalize.sh
liang.he f71165f0ed
update Dockerfile and devcontainer configuration (#4773)
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
2026-01-08 12:23:42 +08:00

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. ✅"