summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2025-01-06 23:41:27 +0100
committerMitya Selivanov <automainint@guattari.tech>2025-01-06 23:41:27 +0100
commiteab2433a2daee814492548b95f16892adde0908d (patch)
treee08d2b82fc3525d937bb64475da5543b4628158c /Dockerfile
parent3359f068dc9e8ac036f0f709aeccf11dfba3cf03 (diff)
downloadreduced_system_layer-eab2433a2daee814492548b95f16892adde0908d.zip
Impl rendering in AudioWorklet
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 7054730..bbe548b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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