How to run jovo from Docker
See original GitHub issueI’m submitting a…
- Bug report
- Feature request
- Documentation issue or request
- Other… Please describe: Docker support for Jovo
Expected Behavior
Jovo run should work while running as docker image file
Current Behavior
Build Docker image for Jovo Application and trying to run as docker. It fails. ###My Docker File FROM node:carbon
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD [ “jovo”, “run” ]
Error log
docker: Error response from daemon: OCI runtime create failed: container_linux.go:348: starting container process caused "exec: \"jovo\": executable file not found in $PATH": unknown.
Your Environment
- Jovo Framework version used: “^1.2.1”* Operating System: Windows/Linux
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
How to run jovo from Docker · Issue #203 - GitHub
Build Docker image for Jovo Application and trying to run as docker. It fails. ###My Docker File FROM node:carbon. WORKDIR /usr/src/app. COPY ...
Read more >Jovo Examples
Run a chatbot built with Jovo, Vue.js, and Snips NLU with a single command using Docker. Community. Helpful code repositories shared by Jovo...
Read more >omenocal/jovo-deploy - Docker Image
Docker image to use in CI/CD pipelines to push your Jovo project using the Jovo CLI. ... Docker Pull Command. docker pull omenocal/jovo-deploy....
Read more >Jovo CLI With GitHub Actions CI/CD | by Octavio Menocal
In this article, I'll show you how to set up GitHub Actions to do continuous integration/continuous deployment (CI/CD) with Jovo.
Read more >How to use the jovo-framework.Jovo.toIntent function in ... - Snyk
Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@aswetlow @jankoenig ,
Thanks for your response. I’m able to resolve this issue. CMD [ “node”, “index.js”, “–webhook” ] - solves the issue and to access , use the deployed server IP and Port mentioned specified in the docker file.
In this case, the Docker Run Command will be,
docker run -d -p 3000:3000 [-e ENV_VAR=‘value’] DOCKER_IMAGE_NAME
How do you access your Docker from outside? You can use the same IP + Port 3000