screwdriver-queue-service 3.0.7 → 3.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/Dockerfile +7 -1
  2. package/package.json +2 -2
package/Dockerfile CHANGED
@@ -18,5 +18,11 @@ RUN cp -r /usr/src/app/node_modules/screwdriver-queue-service/config /config
18
18
  # Expose the web service port
19
19
  EXPOSE 8080
20
20
 
21
+ # Add Tini
22
+ ENV TINI_VERSION v0.19.0
23
+ ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
24
+ RUN chmod +x /tini
25
+ ENTRYPOINT ["/tini", "--"]
26
+
21
27
  # Run the service
22
- CMD [ "npm", "start" ]
28
+ CMD [ "node", "./bin/server" ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-queue-service",
3
- "version": "3.0.7",
3
+ "version": "3.0.9",
4
4
  "description": "Screwdriver Queue Service API",
5
5
  "main": "app.js",
6
6
  "directories": {
@@ -28,7 +28,7 @@
28
28
  "npm-auto-version": "^1.0.0",
29
29
  "redlock": "^4.2.0",
30
30
  "screwdriver-aws-producer-service": "^2.0.0",
31
- "screwdriver-data-schema": "^22.0.1",
31
+ "screwdriver-data-schema": "^23.0.4",
32
32
  "screwdriver-executor-docker": "^6.0.0",
33
33
  "screwdriver-executor-jenkins": "^6.0.0",
34
34
  "screwdriver-executor-k8s": "^15.0.0",