@hybridless/hybridless 0.1.15-alpha10 → 0.1.15-alpha4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hybridless/hybridless",
|
|
3
|
-
"version": "0.1.15-
|
|
3
|
+
"version": "0.1.15-alpha4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -12,14 +12,13 @@
|
|
|
12
12
|
},
|
|
13
13
|
"license": "GNU GPLv3",
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@types/node": "^20.11.
|
|
15
|
+
"@types/node": "^20.11.5",
|
|
16
16
|
"typescript": "^5.3.3",
|
|
17
17
|
"typescript-json-schema": "^0.62.0"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@babel/core": "^7.23.7",
|
|
21
|
-
"@hybridless/serverless-ecs-plugin": "^0.0.
|
|
22
|
-
"@hybridless/serverless-plugin-log-retention": "^2.0.0",
|
|
21
|
+
"@hybridless/serverless-ecs-plugin": "^0.0.43",
|
|
23
22
|
"babel-loader": "^9.1.3",
|
|
24
23
|
"bluebird": "^3.7.2",
|
|
25
24
|
"dockerode": "^3.3.5",
|
|
@@ -27,9 +26,10 @@
|
|
|
27
26
|
"json-schema-ref-parser": "^9.0.9",
|
|
28
27
|
"json-stringify-safe": "^5.0.1",
|
|
29
28
|
"loadash": "^1.0.0",
|
|
29
|
+
"@hybridless/serverless-plugin-log-retention": "^2.0.0",
|
|
30
30
|
"serverless-webpack": "^5.13.0",
|
|
31
31
|
"stack-trace": "0.0.10",
|
|
32
|
-
"tar-fs": "^3.0.
|
|
32
|
+
"tar-fs": "^3.0.4",
|
|
33
33
|
"uuid": "^9.0.0",
|
|
34
34
|
"webpack": "^5.88.2",
|
|
35
35
|
"webpack-node-externals": "^3.0.0"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM ghcr.io/hybridless/
|
|
1
|
+
FROM ghcr.io/hybridless/go:latest
|
|
2
2
|
|
|
3
3
|
# Set the working directory inside the container
|
|
4
4
|
WORKDIR /app
|
|
@@ -10,4 +10,4 @@ EXPOSE $PORT
|
|
|
10
10
|
COPY /app/ /app/
|
|
11
11
|
|
|
12
12
|
# Command to run the executable
|
|
13
|
-
|
|
13
|
+
CMD ["./$ENTRYPOINT"]
|