allan-cf

Results 4 comments of allan-cf

I had the same issues. Delete: groupadd -r node \ && useradd -r -g node node \ in the Dockerfile. Lines 31 and 32. You can see my version here:...

Having this same problem. Here are the full logs: [32mlets-chat_1 |[0m > [email protected] start /usr/src/app [32mlets-chat_1 |[0m > node app.js [32mlets-chat_1 |[0m [32mlets-chat_1 |[0m `open()` is deprecated in mongoose >=...

Got it working. Changed to latest version of node, also had to remove the cache step, also changed the last line from npm start to node app.js.

Here's the working docker file. I'm going to be making changes to mine in my repo. FROM node:latest MAINTAINER SD Elements ENV PKG_JSON_URL=https://raw.githubusercontent.com/sdelements/lets-chat/master/package.json \ TAR_GZ_URL=https://github.com/sdelements/lets-chat/archive/master.tar.gz \ BUILD_DEPS='g++ gcc git make...