Skip to content

Commit 9513740

Browse files
authored
updates requirements, build script (#7)
1 parent ec26574 commit 9513740

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

build

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
#!/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
211

3-
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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
numpy==1.22.0
1+
numpy==1.23.2
22
textblob==0.17.1
3-
scikit-learn==1.0.1
4-
nltk==3.6.7
5-
spacy==3.2.2
3+
scikit-learn==1.1.2
4+
nltk==3.7
5+
spacy==3.4.1
66
requests==2.28.1

0 commit comments

Comments
 (0)