diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-01-06 23:41:27 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-01-06 23:41:27 +0100 |
commit | eab2433a2daee814492548b95f16892adde0908d (patch) | |
tree | e08d2b82fc3525d937bb64475da5543b4628158c /Dockerfile | |
parent | 3359f068dc9e8ac036f0f709aeccf11dfba3cf03 (diff) | |
download | reduced_system_layer-eab2433a2daee814492548b95f16892adde0908d.zip |
Impl rendering in AudioWorklet
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ RUN apk add clang lld COPY examples /usr/examples COPY reduced_system_layer.c /usr/reduced_system_layer.c COPY graphics.c /usr/graphics.c -RUN clang --target=wasm32 -nostdlib -fno-builtin -Wl,--no-entry,--allow-undefined -o /usr/index.wasm /usr/examples/graph.c +RUN clang --target=wasm32 -nostdlib -fno-builtin -mbulk-memory -Wl,--no-entry,--allow-undefined -o /usr/index.wasm /usr/examples/graph.c FROM nginx:alpine EXPOSE 80 |