FROM python:3.5

WORKDIR /app
COPY server/wasm_server.py /app/server/

ENTRYPOINT ["python", "server/wasm_server.py"]
