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.
1 parent ec26574 commit 9513740Copy full SHA for 9513740
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/lf-execution-environment:dev .
12
+docker build -t registry.dev.onetask.ai/code-kern-ai/refinery-lf-exec-env:dev$IS_ARM64 .
requirements.txt
@@ -1,6 +1,6 @@
-numpy==1.22.0
+numpy==1.23.2
textblob==0.17.1
-scikit-learn==1.0.1
-nltk==3.6.7
-spacy==3.2.2
+scikit-learn==1.1.2
+nltk==3.7
+spacy==3.4.1
requests==2.28.1
0 commit comments