mirror of https://github.com/WebAssembly/wasi-sdk
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
392 B
15 lines
392 B
# Use a relatively old/stable distro here to maximize the supported platforms
|
|
# and avoid depending on more recent version of, say, libc.
|
|
FROM debian:stretch
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
clang \
|
|
cmake \
|
|
python \
|
|
git \
|
|
ninja-build \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|