@budibase/worker 3.30.0 → 3.30.1
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 +14 -1
- package/package.json +2 -2
package/Dockerfile
CHANGED
|
@@ -7,7 +7,20 @@ LABEL com.centurylinklabs.watchtower.lifecycle.post-check="scripts/watchtower-ho
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# handle node-gyp
|
|
10
|
-
RUN apk add --no-cache --virtual .gyp python3 make g++
|
|
10
|
+
RUN apk add --no-cache --virtual .gyp python3 make g++ \
|
|
11
|
+
&& apk add --no-cache \
|
|
12
|
+
jq \
|
|
13
|
+
procps \
|
|
14
|
+
iproute2 \
|
|
15
|
+
curl \
|
|
16
|
+
bind-tools \
|
|
17
|
+
netcat-openbsd \
|
|
18
|
+
openssl \
|
|
19
|
+
lsof \
|
|
20
|
+
strace \
|
|
21
|
+
less \
|
|
22
|
+
coreutils \
|
|
23
|
+
tzdata
|
|
11
24
|
RUN yarn global add pm2
|
|
12
25
|
|
|
13
26
|
WORKDIR /
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/worker",
|
|
3
3
|
"email": "hi@budibase.com",
|
|
4
|
-
"version": "3.30.
|
|
4
|
+
"version": "3.30.1",
|
|
5
5
|
"description": "Budibase background service",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"repository": {
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
111
|
},
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "ce9e344b6a609da55770d535cc59079ede2f5da6"
|
|
113
113
|
}
|