[codespaces] Fix V8 error when running lib tests (#86871)
authorIlona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Mon, 29 May 2023 15:02:47 +0000 (17:02 +0200)
committerGitHub <noreply@github.com>
Mon, 29 May 2023 15:02:47 +0000 (17:02 +0200)
.devcontainer/wasm/Dockerfile

index 17ceadc..5f51770 100644 (file)
@@ -33,7 +33,7 @@ SHELL ["/bin/bash", "-c"]
 RUN source /usr/local/share/nvm/nvm.sh && nvm install --lts
 
 # Install V8 Engine
-RUN curl -sSL "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/linux/chromium-v8/v8-linux64-rel-8.5.183.zip" -o ./v8.zip \
+RUN curl -sSL "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/linux/chromium-v8/v8-linux64-rel-10.8.168.zip" -o ./v8.zip \
     && unzip ./v8.zip -d /usr/local/v8 \
     && echo $'#!/usr/bin/env bash\n\
 "/usr/local/v8/d8" --snapshot_blob="/usr/local/v8/snapshot_blob.bin" "$@"\n' > /usr/local/bin/v8 \