summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2025-02-14 17:30:28 +0100
committerMitya Selivanov <automainint@guattari.tech>2025-02-14 17:30:28 +0100
commit7d92468a5d298ec6dd6455482ff0521efecf9541 (patch)
treea060fa81ed5b9187f8b98178582f7abbca69e29f /Dockerfile
parent9eb170e70a7be9ed418152ad1b679473fbe0c35a (diff)
downloadreduced_system_layer-7d92468a5d298ec6dd6455482ff0521efecf9541.zip
Adjust wasm code and examples for new features
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 97577f1..d783d81 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 -D NDEBUG -O3 --target=wasm32 -nostdlib -fno-builtin -mbulk-memory -Wl,--no-entry,--allow-undefined -o /usr/index.wasm /usr/examples/julia_set.c
+RUN clang -g --target=wasm32 -nostdlib -fno-builtin -mbulk-memory -Wl,--no-entry,--allow-undefined -o /usr/index.wasm /usr/examples/julia_set.c
FROM nginx:alpine
EXPOSE 80