From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com> Date: Mon, 29 May 2023 15:02:47 +0000 (+0200) Subject: [codespaces] Fix V8 error when running lib tests (#86871) X-Git-Tag: accepted/tizen/unified/riscv/20231226.055536~1940 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c67357f5d4531c04581244711e83f04a632e9870;p=platform%2Fupstream%2Fdotnet%2Fruntime.git [codespaces] Fix V8 error when running lib tests (#86871) --- diff --git a/.devcontainer/wasm/Dockerfile b/.devcontainer/wasm/Dockerfile index 17ceadc..5f51770 100644 --- a/.devcontainer/wasm/Dockerfile +++ b/.devcontainer/wasm/Dockerfile @@ -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 \