We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4efcb2d commit dc9a1e9Copy full SHA for dc9a1e9
Dockerfile
@@ -0,0 +1,11 @@
1
+FROM node:carbon
2
+
3
+WORKDIR /usr/src/app
4
5
+COPY ../package*.json ./
6
7
+RUN npm install
8
9
+COPY . .
10
11
+CMD [ "npm", "run", "clock" ]
clock/Dockerfile
package.json
@@ -5,7 +5,8 @@
"main": "app.js",
"scripts": {
"test": "gulp sanity",
- "start": "node app"
+ "start": "node app",
+ "clock": "node ./services/queue/clock"
},
"repository": {
12
"type": "git",
0 commit comments