build-containers/Dockerfile.javascript

10 lines
274 B
Docker
Raw Normal View History

2019-01-07 21:51:22 +01:00
FROM godot-fedora:latest
RUN dnf -y install scons git xz java-openjdk yasm && dnf clean all && \
2019-01-07 21:51:22 +01:00
git clone https://github.com/juj/emsdk.git && \
cd /root/emsdk && \
/root/emsdk/emsdk install latest && \
/root/emsdk/emsdk activate latest
CMD ['/bin/bash']