Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wasm] Prime the emscripten cache #826

Merged
merged 2 commits into from
Mar 19, 2023
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
1 change: 1 addition & 0 deletions src/ubuntu/18.04/webassembly-net8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ RUN mkdir ${EMSCRIPTEN_PATH} \
&& cd ${EMSDK_PATH} \
&& ./emsdk install ${EMSCRIPTEN_VERSION}-upstream \
&& ./emsdk activate ${EMSCRIPTEN_VERSION}-upstream \
&& ./upstream/emscripten/embuilder build MINIMAL \
&& chmod -R 777 ${EMSCRIPTEN_PATH}

# Install V8 Engine
Expand Down
1 change: 1 addition & 0 deletions src/ubuntu/20.04/webassembly-net8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ RUN mkdir ${EMSCRIPTEN_PATH} \
&& cd ${EMSDK_PATH} \
&& ./emsdk install ${EMSCRIPTEN_VERSION}-upstream \
&& ./emsdk activate ${EMSCRIPTEN_VERSION}-upstream \
&& ./upstream/emscripten/embuilder build MINIMAL \
&& chmod -R 777 ${EMSCRIPTEN_PATH}

# Install V8 Engine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ RUN mkdir %EMSCRIPTEN_PATH% \
&& git clone https://github.com/emscripten-core/emsdk.git %EMSDK_PATH%
RUN cd %EMSDK_PATH% \
&& .\emsdk install %EMSCRIPTEN_VERSION%-upstream \
&& .\emsdk activate %EMSCRIPTEN_VERSION%-upstream
&& .\emsdk activate %EMSCRIPTEN_VERSION%-upstream \
&& .\upstream\emscripten\embuilder.bat build MINIMAL

# install Node JS
ENV NODE_VERSION 17.3.1
Expand Down