File tree 3 files changed +21
-8
lines changed
3 files changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,25 @@ COPY ./db.sqlite3.dist /app/db.sqlite3
19
19
COPY ./.env.docker /app/.env
20
20
COPY ./download-nltk-resources.sh /app/
21
21
22
+ # Near the top or just before WORKDIR
23
+ ENV BLIS_ARCH=generic
24
+
22
25
WORKDIR /app
23
26
24
- # Optimize pip and Python installations
25
- RUN pip install --no-cache-dir --upgrade pip \
26
- && pip install --no-cache-dir -r requirements.txt \
27
- && pip install --no-cache-dir --upgrade grpcio
27
+ # Optimize pip and Python installations; install spaCy version matching requirements.txt
28
+ RUN pip install --no-cache-dir --upgrade pip setuptools wheel && \
29
+ SPACY_VERSION=$(grep -E '^[sS]pacy(==|>=)' requirements.txt | head -1 | sed -E 's/^[sS]pacy(==|>=)//' ) && \
30
+ if [ -n "$SPACY_VERSION" ]; then \
31
+ echo "Found spaCy version $SPACY_VERSION in requirements.txt" ; \
32
+ pip install --no-cache-dir --only-binary :all: spacy==$SPACY_VERSION || \
33
+ pip install --no-cache-dir spacy==$SPACY_VERSION; \
34
+ else \
35
+ echo "No pinned spaCy version found in requirements.txt, installing latest spaCy wheel" ; \
36
+ pip install --no-cache-dir --only-binary :all: spacy || \
37
+ pip install --no-cache-dir spacy; \
38
+ fi && \
39
+ pip install --no-cache-dir -r requirements.txt && \
40
+ pip install --no-cache-dir --upgrade grpcio
28
41
29
42
# Swirl install requirements
30
43
RUN python -m spacy download en_core_web_lg && \
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ requests
2
2
Django >= 5.1
3
3
django_restframework
4
4
django-celery-beat
5
- Celery >= 5.5.0rc4
5
+ Celery >= 5.5.0rc5
6
6
pika
7
7
elasticsearch
8
8
jsonpath-ng
9
9
pyyaml
10
10
whitenoise
11
11
daphne
12
12
textblob
13
- spacy == 3.7.5
13
+ spacy
14
14
natsort
15
15
django-environ
16
16
statistics
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ class bcolors:
10
10
ENDC = '\033 [0m'
11
11
BOLD = '\033 [1m'
12
12
13
- SWIRL_VERSION = '4.1 -DEV'
13
+ SWIRL_VERSION = '4.2 -DEV'
14
14
15
- SWIRL_BANNER_TEXT = "__S_W_I_R_L__A_I__4_._1 -DEV__________________________________________________________"
15
+ SWIRL_BANNER_TEXT = "__S_W_I_R_L__A_I__4_._2 -DEV__________________________________________________________"
16
16
SWIRL_BANNER = f'{ bcolors .BOLD } { SWIRL_BANNER_TEXT } { bcolors .ENDC } '
17
17
18
18
#############################################
You can’t perform that action at this time.
0 commit comments