diff --git a/contrib/single_file_libs/build_decoder_test.sh b/contrib/single_file_libs/build_decoder_test.sh index 2ed25bce1..13f52bd63 100755 --- a/contrib/single_file_libs/build_decoder_test.sh +++ b/contrib/single_file_libs/build_decoder_test.sh @@ -28,7 +28,7 @@ emscripten_docker_build() { docker container run --rm \ --volume $PWD:/code \ --workdir /code \ - trzeci/emscripten \ + emscripten/emsdk:latest \ emcc $CC_FLAGS -s WASM=1 -I. -o $OUT_WASM $IN_FILES # Did compilation work? if [ $? -ne 0 ]; then diff --git a/contrib/single_file_libs/build_library_test.sh b/contrib/single_file_libs/build_library_test.sh index 54b3eae20..367b8de78 100755 --- a/contrib/single_file_libs/build_library_test.sh +++ b/contrib/single_file_libs/build_library_test.sh @@ -31,7 +31,7 @@ emscripten_docker_build() { docker container run --rm \ --volume $PWD:/code \ --workdir /code \ - trzeci/emscripten \ + emscripten/emsdk:latest \ emcc $CC_FLAGS -s WASM=1 -I. -o $OUT_WASM $IN_FILES # Did compilation work? if [ $? -ne 0 ]; then