2015-05-19 23:34:05 +02:00
|
|
|
FROM thewtex/cross-compiler-base
|
|
|
|
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|
|
|
|
|
|
|
# The cross-compiling emulator
|
|
|
|
RUN curl -sL https://deb.nodesource.com/setup | bash - && \
|
|
|
|
apt-get install -y \
|
|
|
|
default-jre \
|
|
|
|
nodejs \
|
|
|
|
python2.7
|
|
|
|
|
2015-10-31 01:08:09 +01:00
|
|
|
ENV EMSCRIPTEN_VERSION 1.35.4
|
2015-05-19 23:34:05 +02:00
|
|
|
RUN cd /usr && \
|
|
|
|
curl -L https://s3.amazonaws.com/mozilla-games/emscripten/releases/emsdk-portable.tar.gz | tar xz && \
|
|
|
|
cd ./emsdk_portable && \
|
|
|
|
./emsdk update && \
|
2015-07-23 06:08:56 +02:00
|
|
|
./emsdk install -j$(nproc) --build=Release sdk-tag-${EMSCRIPTEN_VERSION}-64bit && \
|
|
|
|
./emsdk activate --build=Release sdk-tag-${EMSCRIPTEN_VERSION}-64bit && \
|
2015-05-19 23:34:05 +02:00
|
|
|
find . -name "*.o" -exec rm {} \; && \
|
|
|
|
find . -name "*.a" -exec rm {} \; && \
|
|
|
|
find . -name "*.tmp" -exec rm {} \;
|
|
|
|
|
2015-07-23 06:08:56 +02:00
|
|
|
ENV PATH /usr/emsdk_portable:/usr/emsdk_portable/clang/tag-e${EMSCRIPTEN_VERSION}/build_tag-e${EMSCRIPTEN_VERSION}_64/bin:/usr/emsdk_portable/emscripten/tag-${EMSCRIPTEN_VERSION}:${PATH}
|
2015-05-19 23:34:05 +02:00
|
|
|
|
2015-07-24 22:06:40 +02:00
|
|
|
ENV CMAKE_TOOLCHAIN_FILE /usr/emsdk_portable/emscripten/tag-${EMSCRIPTEN_VERSION}/cmake/Modules/Platform/Emscripten.cmake
|