summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2025-01-14 04:13:45 +0100
committerMitya Selivanov <automainint@guattari.tech>2025-01-14 04:13:45 +0100
commitc9208089c6074575342d529f494295c13269a1aa (patch)
treee87af3b94f573ab48989a265561dc6016d69812b /Dockerfile
parenta3cf8790cb4547288c9d395609738c4a1eb838a2 (diff)
downloadreduced_system_layer-c9208089c6074575342d529f494295c13269a1aa.zip
Rectangle anti-aliasing
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 407cb16..67e7fe8 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 -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