mirror of
https://github.com/Lore09/Tesi-Magistrale.git
synced 2025-12-19 04:14:35 +00:00
8 lines
109 B
Docker
8 lines
109 B
Docker
# Running as native wasm runtime
|
|
FROM scratch
|
|
|
|
COPY ./build/server.wasm .
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["./server.wasm"] |