Use custom docker file for faster tests

This commit is contained in:
Fabian 2018-01-30 16:22:57 -06:00
parent 636d404470
commit 93912313f2

9
docker/Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM ttt43ttt/emscripten
RUN \
dpkg --add-architecture i386 && \
apt-get update -qq && \
apt-get install -y gcc-multilib nasm gdb unzip openjdk-8-jre wget python && \
wget https://nodejs.org/dist/v8.2.1/node-v8.2.1-linux-x64.tar.xz && \
tar xfv node-v8.2.1-linux-x64.tar.xz && \
export PATH=$PWD/node-v8.2.1-linux-x64/bin/:$PATH