diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-01-14 20:48:38 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-01-14 20:48:38 +0100 |
commit | a14a2e0d933e64b1c28b45ac10e651af7f749b3e (patch) | |
tree | c98bb6d14eca61f649db516e16ab92260e12c59c /Dockerfile | |
parent | f52300e90f4bcb2092dd2beba327c2499d6fbd11 (diff) | |
download | reduced_system_layer-a14a2e0d933e64b1c28b45ac10e651af7f749b3e.zip |
Refactor
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 -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 |