07_paraview /Docker/ Example Issues #578
-
|
After building this dockerfile and running it with this i get at first sight it seems to run, but all i see is this. and it's not changing. If i try to reload the page i get these error logs. I managed to containerize multiple files trame applications with vue-components thanks to cookiecutter. But I failed to containerize anything yet where paraview is involved. My end goal is to containerize the visualizer but the dockerfile, the scripts and the base images all seem outdated. Could anyone help my find the issue here with this simple paraview docker example? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
|
Try that This should give you the option to run with or without gpu |
Beta Was this translation helpful? Give feedback.
-
|
Hi , I met this issue too, when building docker of trame-slicer application. What is the reason causing this. I used app.yml to run the cmd but still has this issue. Traceback (most recent call last): |
Beta Was this translation helpful? Give feedback.

trame-appis a script shortcut. That encapsulate the python command line... (defined inside your python package definition)The
cmdin apps.yaml expect exactly the command you would run locally. So you can try locally to run a command like that (outside of docker) to see if that works.Moreover,
python -m trame-appwould not work becausetrame-appis not a valid package name. But maybetrame_appmight work. And the complex pvpython command expect the same thing as a-m arg. So once you figure out how you can run your app likepython -m xxx, you should be able to adjust your pvpython command line.