@things-factory/shell 4.3.535 → 4.3.543-alpha.0
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.
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
echo $1
|
3
|
+
echo $2
|
4
|
+
PLATFORM=linux/amd64
|
5
|
+
if [ $# -eq 0 ] ; then
|
6
|
+
echo "Image name required"
|
7
|
+
exit 1;
|
8
|
+
else
|
9
|
+
IMAGE=$1
|
10
|
+
PLATFORM=$2
|
11
|
+
fi
|
12
|
+
echo "IMAGE : ${IMAGE}"
|
13
|
+
echo "PLATFORM : ${PLATFORM}"
|
14
|
+
# Dockerfile4ARM을 사용하여 Docker 이미지를 빌드
|
15
|
+
DOCKER_BUILDKIT=1 docker image build -f Dockerfile-arm64 -t ${IMAGE} --platform ${PLATFORM} .
|
package/package.json
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "@things-factory/shell",
|
3
|
-
"version": "4.3.
|
3
|
+
"version": "4.3.543-alpha.0",
|
4
4
|
"description": "Core module for framework",
|
5
5
|
"bin": {
|
6
6
|
"things-factory": "bin/things-factory",
|
7
7
|
"things-factory-dev": "bin/things-factory-dev",
|
8
8
|
"things-factory-migration": "bin/things-factory-migration",
|
9
9
|
"things-factory-stop": "bin/things-factory-stop",
|
10
|
-
"things-factory-dockerize": "bin/things-factory-dockerize"
|
10
|
+
"things-factory-dockerize": "bin/things-factory-dockerize",
|
11
|
+
"things-factory-dockerize-arm": "bin/things-factory-dockerize-arm"
|
11
12
|
},
|
12
13
|
"main": "dist-server/index.js",
|
13
14
|
"browser": "client/index.js",
|
@@ -49,10 +50,10 @@
|
|
49
50
|
"@operato/layout": "^0.4.6",
|
50
51
|
"@operato/shell": "^0.4.6",
|
51
52
|
"@operato/utils": "^0.4.6",
|
52
|
-
"@things-factory/ejs-remote": "^4.3.
|
53
|
-
"@things-factory/env": "^4.3.
|
54
|
-
"@things-factory/styles": "^4.3.
|
55
|
-
"@things-factory/utils": "^4.3.
|
53
|
+
"@things-factory/ejs-remote": "^4.3.543-alpha.0",
|
54
|
+
"@things-factory/env": "^4.3.543-alpha.0",
|
55
|
+
"@things-factory/styles": "^4.3.543-alpha.0",
|
56
|
+
"@things-factory/utils": "^4.3.543-alpha.0",
|
56
57
|
"@webcomponents/webcomponentsjs": "^2.6.0",
|
57
58
|
"@webpack-contrib/schema-utils": "^1.0.0-beta.0",
|
58
59
|
"apollo-server-core": "^3.5.0",
|
@@ -128,5 +129,5 @@
|
|
128
129
|
"resolutions": {
|
129
130
|
"core-js": "^3.16.0"
|
130
131
|
},
|
131
|
-
"gitHead": "
|
132
|
+
"gitHead": "841de2f16e58de02b52cf7e3d648a0a0e46b6859"
|
132
133
|
}
|