This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
wasm-micro-runtime/test-tools/IoT-APP-Store-Demo/wasm_django/server/Dockerfile
TianlongLiang ee210d019f
Dockerfile lint errors fix (#1493)
Fix the Dockerfile linter errors and most warnings
2022-09-22 13:06:11 +08:00

7 lines
118 B
Docker

FROM python:3.5
WORKDIR /app
COPY server/wasm_server.py /app/server/
ENTRYPOINT ["python", "server/wasm_server.py"]