diff --git a/Dockerfile b/Dockerfile index f01ae5e..d8ce2ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,4 +13,4 @@ RUN npm install COPY . /app # We start our application by calling # npm start. -CMD ["npm", "run-script dockerstart"] \ No newline at end of file +CMD ["npm", "start"] \ No newline at end of file diff --git a/package.json b/package.json index d45776b..7727bd5 100644 --- a/package.json +++ b/package.json @@ -13,8 +13,7 @@ "devDependencies": {}, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "start": "node index.js", - "dockerstart": "git pull && node index.js" + "start": "git pull && node index.js" }, "author": "", "license": "ISC"