@budibase/server 2.7.26-alpha.1 → 2.7.26-alpha.2
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 +13 -3
- package/package.json +8 -8
package/Dockerfile
CHANGED
|
@@ -26,11 +26,21 @@ RUN apt-get install unzip libaio1
|
|
|
26
26
|
COPY scripts/integrations/oracle/ scripts/integrations/oracle/
|
|
27
27
|
RUN /bin/bash -e scripts/integrations/oracle/instantclient/linux/x86-64/install.sh
|
|
28
28
|
|
|
29
|
+
# Install postgres client for pg_dump utils
|
|
30
|
+
RUN apt update && apt upgrade -y \
|
|
31
|
+
&& apt install software-properties-common apt-transport-https curl gpg -y \
|
|
32
|
+
&& curl -fsSl https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /usr/share/keyrings/postgresql.gpg > /dev/null \
|
|
33
|
+
&& echo deb [arch=amd64,arm64,ppc64el signed-by=/usr/share/keyrings/postgresql.gpg] http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main | tee /etc/apt/sources.list.d/postgresql.list \
|
|
34
|
+
&& apt update -y \
|
|
35
|
+
&& apt install postgresql-client-15 -y \
|
|
36
|
+
&& apt remove software-properties-common apt-transport-https curl gpg -y
|
|
37
|
+
|
|
38
|
+
|
|
29
39
|
COPY package.json .
|
|
30
40
|
COPY dist/yarn.lock .
|
|
31
|
-
RUN yarn install --production=true
|
|
32
|
-
# Remove unneeded data from file system to reduce image size
|
|
33
|
-
|
|
41
|
+
RUN yarn install --production=true \
|
|
42
|
+
# Remove unneeded data from file system to reduce image size
|
|
43
|
+
&& yarn cache clean && apt-get remove -y --purge --auto-remove g++ make python \
|
|
34
44
|
&& rm -rf /tmp/* /root/.node-gyp /usr/local/lib/node_modules/npm/node_modules/node-gyp
|
|
35
45
|
|
|
36
46
|
COPY dist/ dist/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/server",
|
|
3
3
|
"email": "hi@budibase.com",
|
|
4
|
-
"version": "2.7.26-alpha.
|
|
4
|
+
"version": "2.7.26-alpha.2",
|
|
5
5
|
"description": "Budibase Web Server",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"repository": {
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"license": "GPL-3.0",
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@apidevtools/swagger-parser": "10.0.3",
|
|
49
|
-
"@budibase/backend-core": "2.7.26-alpha.
|
|
50
|
-
"@budibase/client": "2.7.26-alpha.
|
|
51
|
-
"@budibase/pro": "2.7.26-alpha.
|
|
52
|
-
"@budibase/shared-core": "2.7.26-alpha.
|
|
53
|
-
"@budibase/string-templates": "2.7.26-alpha.
|
|
54
|
-
"@budibase/types": "2.7.26-alpha.
|
|
49
|
+
"@budibase/backend-core": "2.7.26-alpha.2",
|
|
50
|
+
"@budibase/client": "2.7.26-alpha.2",
|
|
51
|
+
"@budibase/pro": "2.7.26-alpha.2",
|
|
52
|
+
"@budibase/shared-core": "2.7.26-alpha.2",
|
|
53
|
+
"@budibase/string-templates": "2.7.26-alpha.2",
|
|
54
|
+
"@budibase/types": "2.7.26-alpha.2",
|
|
55
55
|
"@bull-board/api": "3.7.0",
|
|
56
56
|
"@bull-board/koa": "3.9.4",
|
|
57
57
|
"@elastic/elasticsearch": "7.10.0",
|
|
@@ -196,5 +196,5 @@
|
|
|
196
196
|
}
|
|
197
197
|
}
|
|
198
198
|
},
|
|
199
|
-
"gitHead": "
|
|
199
|
+
"gitHead": "643d940d8bb00541f9d046b8b6c30396d26ffa86"
|
|
200
200
|
}
|