Files
build-containers/Dockerfile.javascript
Rémi Verschelde f7966f0a1e Disable installation of weak deps
This saves us from pulling gtk2 and gtk3 as weak deps of
perl and git or whatnot... And we don't need to pull in all
the documentation on Ubuntu.

Also ensures that we properly run `dnf clean all` after each
installation.
2019-11-18 17:09:03 +01:00

13 lines
354 B
JavaScript

FROM godot-fedora:latest
RUN dnf -y install --setopt=install_weak_deps=False \
java-openjdk yasm && \
dnf clean all && \
git clone https://github.com/emscripten-core/emsdk && \
cd emsdk && \
./emsdk install 1.39.0 && \
./emsdk activate 1.39.0 && \
echo "source /root/emsdk/emsdk_env.sh" >> /root/.bashrc
CMD ['/bin/bash']