We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c82aec5 + 48b2c4a commit 5c7ae82Copy full SHA for 5c7ae82
build
@@ -1,3 +1,12 @@
1
#!/bin/bash
2
+IS_ARM64=""
3
+currentArch="$(uname -m)"
4
+if [ "$currentArch" == "arm64" ];
5
+then
6
+ echo "architecture: arm64"
7
+ IS_ARM64="_arm64"
8
+else
9
+ echo "architecture: $currentArch"
10
+fi
11
-docker build -t registry.dev.onetask.ai/code-kern-ai/ml-execution-environment:main .
12
+docker build -t registry.dev.onetask.ai/code-kern-ai/refinery-ml-exec-env:dev$IS_ARM64 .
requirements.txt
@@ -20,5 +20,6 @@ six==1.16.0
20
threadpoolctl==3.1.0
21
tinycss2==1.1.1
22
tomli==2.0.1
23
+torch==1.11.0
24
typing_extensions==4.2.0
25
urllib3==1.26.9
0 commit comments