mirror of
https://github.com/godotengine/build-containers.git
synced 2025-12-31 21:48:41 +03:00
Emscripten 3.1.19 and 3.1.20 have a showstopping regression that breaks calling our main function for the editor build.
11 lines
296 B
Docker
11 lines
296 B
Docker
ARG img_version
|
|
FROM godot-fedora:${img_version}
|
|
|
|
ENV EMSCRIPTEN_VERSION=3.1.18
|
|
|
|
RUN git clone --branch ${EMSCRIPTEN_VERSION} --progress https://github.com/emscripten-core/emsdk && \
|
|
emsdk/emsdk install ${EMSCRIPTEN_VERSION} && \
|
|
emsdk/emsdk activate ${EMSCRIPTEN_VERSION}
|
|
|
|
CMD /bin/bash
|