diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-01-14 04:13:45 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-01-14 04:13:45 +0100 |
commit | c9208089c6074575342d529f494295c13269a1aa (patch) | |
tree | e87af3b94f573ab48989a265561dc6016d69812b /Dockerfile | |
parent | a3cf8790cb4547288c9d395609738c4a1eb838a2 (diff) | |
download | reduced_system_layer-c9208089c6074575342d529f494295c13269a1aa.zip |
Rectangle anti-aliasing
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 -mbulk-memory -Wl,--no-entry,--allow-undefined -o /usr/index.wasm /usr/examples/ui.c +RUN clang --target=wasm32 -O3 -nostdlib -fno-builtin -mbulk-memory -Wl,--no-entry,--allow-undefined -o /usr/index.wasm /usr/examples/ui.c FROM nginx:alpine EXPOSE 80 |