Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wasicontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ARG TARGETARCH
# WASI SDK versions are controlled in install-wasi.sh.
ENV WASI_SDK_ROOT=/opt

ENV WASMTIME_VERSION=36.0.2
ENV WASMTIME_VERSION=38.0.2
ENV WASMTIME_HOME=/opt/wasmtime

RUN mkdir -p /opt/cpython-devcontainer/bin
Expand Down
3 changes: 2 additions & 1 deletion wasicontainer/install-wasi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ case "${TARGETARCH}" in
esac && \

# 24: 3.13, 3.14
# 25: 3.15
# The URL format only works for WASI SDK >= 23.
WASI_SDK_VERSIONS=(24)
WASI_SDK_VERSIONS=(24 25)
for VERSION in "${WASI_SDK_VERSIONS[@]}"; do
URL=https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${VERSION}/wasi-sdk-${VERSION}.0-${WASI_ARCH}-linux.tar.gz
curl --location $URL | tar --directory ${WASI_SDK_ROOT} --extract --gunzip
Expand Down