initial commit
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@ -0,0 +1,11 @@
|
||||
FROM emscripten/emsdk
|
||||
|
||||
RUN wget -O /tmp/wasi-stub.tar.gz https://github.com/astrale-sharp/wasm-minimal-protocol/releases/download/wasi-stub-0.2.0/wasi-stub-x86_64-unknown-linux-musl.tar.gz &&\
|
||||
mkdir /tmp/wasi-stub &&\
|
||||
tar -xf /tmp/wasi-stub.tar.gz -C /tmp/wasi-stub --strip-components=1 &&\
|
||||
mv /tmp/wasi-stub/wasi-stub /bin/wasi-stub &&\
|
||||
chmod +x /bin/wasi-stub &&\
|
||||
rm -r /tmp/wasi-stub*
|
||||
|
||||
COPY compile.sh /bin/compile
|
||||
RUN chmod +x /bin/compile
|
Reference in New Issue
Block a user