From 7966948062e55fac965d1a6a13b848dc0df78a9f Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Sun, 10 Nov 2024 06:00:50 +0100 Subject: Remove asserts --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Dockerfile') 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 -- cgit v1.2.3