mirror of
https://github.com/godotengine/build-containers.git
synced 2026-01-07 02:10:46 +03:00
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.
13 lines
354 B
JavaScript
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']
|