Here is the related part of my Dockerfile
ENTRYPOINT bokeh serve
–allow-websocket-origin="*"
–port=${port}
–address=0.0.0.0
–num-procs=1
/app
in kubernetes yaml file I did:
command: ["bokeh"]
args: [ "serve", " --allow-websocket-origin='*'"," --port=5006"," --address=0.0.0.0"," --num-procs=1"," /app"]
but pod failed.
What mihht the problem be?
regards