Some checks failed
Build and Deploy / build-macos (push) Failing after 29s
Build and Deploy / build-windows (CLANG64) (push) Has been cancelled
Build and Deploy / package-dist (push) Has been cancelled
Build and Deploy / deploy-itch (push) Has been cancelled
Build and Deploy / deploy-gitea (push) Has been cancelled
Build and Deploy / build-linux (push) Has been cancelled
12 lines
386 B
Docker
12 lines
386 B
Docker
# Use the official Emscripten SDK image (includes emcc, emsdk, Python, nodejs, etc)
|
|
FROM emscripten/emsdk:latest
|
|
|
|
# Install Meson & Ninja if needed (some emsdk tags already bundle them)
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
meson \
|
|
ninja-build \
|
|
python3-pip && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip3 install --upgrade meson>=1.4 |