summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2025-01-14 20:48:38 +0100
committerMitya Selivanov <automainint@guattari.tech>2025-01-14 20:48:38 +0100
commita14a2e0d933e64b1c28b45ac10e651af7f749b3e (patch)
treec98bb6d14eca61f649db516e16ab92260e12c59c /Dockerfile
parentf52300e90f4bcb2092dd2beba327c2499d6fbd11 (diff)
downloadreduced_system_layer-a14a2e0d933e64b1c28b45ac10e651af7f749b3e.zip
Refactor
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 67e7fe8..57c5935 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 -O3 -nostdlib -fno-builtin -mbulk-memory -Wl,--no-entry,--allow-undefined -o /usr/index.wasm /usr/examples/ui.c
+RUN clang -D NDEBUG -O3 --target=wasm32 -nostdlib -fno-builtin -mbulk-memory -Wl,--no-entry,--allow-undefined -o /usr/index.wasm /usr/examples/ui.c
FROM nginx:alpine
EXPOSE 80