airavata-courses / shubhamkr1

0 stars 0 forks source link

Assignment 2: Issue with running docker container nodejs #11

Closed shubhamkr1 closed 7 years ago

shubhamkr1 commented 7 years ago

I have created Dockerfile with below content - FROM node:8.5-alpine ADD . /node WORKDIR /node ADD package.json /node/ RUN npm install EXPOSE 4444 4445 ENTRYPOINT ["node","index.js"]

I am able to build image from this but during runtime I get error attached in image erroe_dock1

tilaks26 commented 7 years ago

Please check if you've installed your dependencies. It's clear that you've not installed something that you're supposed to. The path shows something related to sqlite3.

Link 1 Link 2

P.S. - From next time when you open an issue, you're supposed to tag the AIs, not assign them to the issues. Ultimately, you're the one who is supposed to resolve issues. Not the AIs. So, you will be the assignee for your issues.

Thanks.