diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-01-07 00:16:22 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-01-07 00:16:22 +0100 |
commit | 91646cbafee3ff67baff52499529ac9077675239 (patch) | |
tree | ef450666dc81f014025425264cf38b2bac2ab7c3 /Dockerfile | |
parent | 8572d0ade4d8447ba68c4f6e3a7e791a8b38ad22 (diff) | |
download | reduced_system_layer-91646cbafee3ff67baff52499529ac9077675239.zip |
Fix clipboard; TODO keys
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/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 |