summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2025-01-07 00:16:22 +0100
committerMitya Selivanov <automainint@guattari.tech>2025-01-07 00:16:22 +0100
commit91646cbafee3ff67baff52499529ac9077675239 (patch)
treeef450666dc81f014025425264cf38b2bac2ab7c3 /Dockerfile
parent8572d0ade4d8447ba68c4f6e3a7e791a8b38ad22 (diff)
downloadreduced_system_layer-91646cbafee3ff67baff52499529ac9077675239.zip
Fix clipboard; TODO keys
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index bbe548b..407cb16 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/graph.c
+RUN clang --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