summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2024-11-10 06:00:50 +0100
committerMitya Selivanov <automainint@guattari.tech>2024-11-10 06:00:50 +0100
commit7966948062e55fac965d1a6a13b848dc0df78a9f (patch)
tree5d6f9093783c0947f3a263dd035ef1c145158c36 /Dockerfile
parentb12ca99506c7538a74cb2ed39ce0e1781e934a2a (diff)
downloadreduced_system_layer-7966948062e55fac965d1a6a13b848dc0df78a9f.zip
Remove asserts
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 9875b94..a4750ca 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,9 +1,9 @@
FROM alpine as build
RUN apk add clang lld
-COPY examples/ui.c /usr/examples/ui.c
+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 -Wl,--no-entry,--allow-undefined -o /usr/index.wasm /usr/examples/ui.c
+RUN clang --target=wasm32 -nostdlib -Wl,--no-entry,--allow-undefined -o /usr/index.wasm /usr/examples/graph.c
FROM nginx:alpine
EXPOSE 80