@budibase/worker 1.0.187 → 1.0.188

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 +3 -1
  2. package/package.json +5 -5
package/Dockerfile CHANGED
@@ -9,7 +9,9 @@ WORKDIR /app
9
9
 
10
10
  # copy files and install dependencies
11
11
  COPY . ./
12
- RUN yarn
12
+ # handle node-gyp
13
+ RUN apk add --no-cache --virtual .gyp python3 make g++ \
14
+ && yarn && apk del .gyp
13
15
  RUN yarn global add pm2
14
16
 
15
17
  EXPOSE 4001
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/worker",
3
3
  "email": "hi@budibase.com",
4
- "version": "1.0.187",
4
+ "version": "1.0.188",
5
5
  "description": "Budibase background service",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -32,9 +32,9 @@
32
32
  "author": "Budibase",
33
33
  "license": "GPL-3.0",
34
34
  "dependencies": {
35
- "@budibase/backend-core": "^1.0.187",
36
- "@budibase/pro": "1.0.186",
37
- "@budibase/string-templates": "^1.0.187",
35
+ "@budibase/backend-core": "^1.0.188",
36
+ "@budibase/pro": "1.0.187",
37
+ "@budibase/string-templates": "^1.0.188",
38
38
  "@koa/router": "^8.0.0",
39
39
  "@sentry/node": "6.17.7",
40
40
  "@techpass/passport-openidconnect": "^0.3.0",
@@ -90,5 +90,5 @@
90
90
  "./scripts/jestSetup.js"
91
91
  ]
92
92
  },
93
- "gitHead": "c77d7de66f212104eb34540bf1c1f27f9176f0f3"
93
+ "gitHead": "240746c559ac85eb38c4b70c08f48c7a8af859ec"
94
94
  }