This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:stretch | |
RUN apt-get update && apt-get install -y git python libxml2 | |
RUN git clone https://github.com/emscripten-core/emsdk.git && \ | |
cd emsdk && \ | |
./emsdk install latest && \ | |
./emsdk activate latest | |
ENV PATH="/emsdk:/emsdk/node/12.9.1_64bit/bin:/emsdk/upstream/emscripten:${PATH}" |