screwdriver-api 7.0.44 → 7.0.45

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.
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM node:18
1
+ FROM node:20
2
2
 
3
3
  # Screwdriver Version
4
4
  ARG VERSION=latest
@@ -8,7 +8,7 @@ RUN mkdir -p /usr/src/app
8
8
  WORKDIR /usr/src/app
9
9
 
10
10
  # Install Screwdriver API
11
- RUN npm install screwdriver-api@$VERSION
11
+ RUN npm install -d screwdriver-api@$VERSION
12
12
  WORKDIR /usr/src/app/node_modules/screwdriver-api
13
13
 
14
14
  # Setup configuration folder
package/Dockerfile.local CHANGED
@@ -1,4 +1,4 @@
1
- FROM node:18
1
+ FROM node:20
2
2
 
3
3
  # Create our application directory
4
4
  RUN mkdir -p /usr/src/app
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-api",
3
- "version": "7.0.44",
3
+ "version": "7.0.45",
4
4
  "description": "API server for the Screwdriver.cd service",
5
5
  "main": "index.js",
6
6
  "scripts": {