diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2024-11-10 06:00:50 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2024-11-10 06:00:50 +0100 |
commit | 7966948062e55fac965d1a6a13b848dc0df78a9f (patch) | |
tree | 5d6f9093783c0947f3a263dd035ef1c145158c36 /Dockerfile | |
parent | b12ca99506c7538a74cb2ed39ce0e1781e934a2a (diff) | |
download | reduced_system_layer-7966948062e55fac965d1a6a13b848dc0df78a9f.zip |
Remove asserts
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |