From ffbf92c5b2c4e9fb8912366769c19328b590875e Mon Sep 17 00:00:00 2001 From: Cory Petkovsek <632766+tinmanjuggernaut@users.noreply.github.com> Date: Wed, 13 Nov 2019 16:51:35 +0800 Subject: [PATCH] Add which and specify emssdk 1.39.0 --- Dockerfile.javascript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.javascript b/Dockerfile.javascript index 20b2657..ae2d59b 100644 --- a/Dockerfile.javascript +++ b/Dockerfile.javascript @@ -1,10 +1,10 @@ FROM godot-fedora:latest -RUN dnf -y install scons git bzip2 xz java-openjdk yasm && dnf clean all && \ +RUN dnf -y install which scons git bzip2 xz java-openjdk yasm && dnf clean all && \ git clone https://github.com/emscripten-core/emsdk && \ cd emsdk && \ - ./emsdk install latest && \ - ./emsdk activate latest && \ + ./emsdk install 1.39.0 && \ + ./emsdk activate 1.39.0 && \ echo "source /root/emsdk/emsdk_env.sh" >> /root/.bashrc CMD ['/bin/bash']