mirror of
https://github.com/godotengine/build-containers.git
synced 2025-12-31 21:48:41 +03:00
- Fedora 40 - SCons 4.7.0 - MinGW 11.0.1 with GCC 14.1.1 and binutils 2.41 - Xcode 15.5 (macOS 14.5, iOS 17.5) - Emscripten 3.1.61
11 lines
296 B
Docker
11 lines
296 B
Docker
ARG img_version
|
|
FROM godot-fedora:${img_version}
|
|
|
|
ENV EMSCRIPTEN_VERSION=3.1.61
|
|
|
|
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
|