Skip to content
This repository was archived by the owner on Jun 30, 2025. It is now read-only.

Commit 28459d1

Browse files
committed
Fixing spacy caching
1 parent 955acf7 commit 28459d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN pip3 install --no-cache-dir -r requirements.txt
1212

1313
# Get the spacy model
1414
ARG SPACY_MODELS="en_core_web_sm en_core_web_md en_core_web_lg"
15-
RUN for spacy_model in ${SPACY_MODELS}; do python -m spacy download $spacy_model; done
15+
RUN for spacy_model in $SPACY_MODELS; do python -m spacy download $spacy_model; done
1616

1717
# Copy the remaining files
1818
COPY . /cat

0 commit comments

Comments
 (0)