mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 23:15:16 +00:00
7 lines
118 B
Docker
7 lines
118 B
Docker
FROM python:3.5
|
|
|
|
WORKDIR /app
|
|
COPY server/wasm_server.py /app/server/
|
|
|
|
ENTRYPOINT ["python", "server/wasm_server.py"]
|