We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WORKDIR
FROM k33g/simplism:0.1.2 WORKDIR /app COPY simplism-config.yaml . EXPOSE 7000 CMD ["/simplism", "config", "./simplism-config.yaml", "faas-config"]
When deploying with:
curl -X POST \ http://localhost:9000/spawn \ --data-binary @- << EOF { "wasm-file":"./tmp/hello-world.wasm", "wasm-function":"handle", "wasm-url": "https://github.com/simplism-registry/hello-world/releases/download/v0.0.1/hello-world.wasm", "discovery-endpoint":"http://localhost:7000/discovery", "service-name": "hello-world" } EOF
The process fails, and the container stops:
😡 Error when spawning a new simplism process: ./tmp/hello-world.wasm fork/exec ./simplism: no such file or directory
🤔 see https://github.com/bots-garden/simplism/blob/main/helpers/processes/processes-helper.go#L59C11-L59C28
cmd := &exec.Cmd{ Path: GetExecutablePath("simplism"), Args: spawnArgs, Stdout: os.Stdout, Stderr: os.Stdout, }
It looks like the GetExecutablePath does not return the appropriate path
GetExecutablePath
The text was updated successfully, but these errors were encountered:
k33g
No branches or pull requests
When deploying with:
The process fails, and the container stops:
🤔 see https://github.com/bots-garden/simplism/blob/main/helpers/processes/processes-helper.go#L59C11-L59C28
It looks like the
GetExecutablePath
does not return the appropriate pathThe text was updated successfully, but these errors were encountered: