wesslen commited on
Commit
0cbb966
1 Parent(s): 27bc8ac

Update Dockerfile for typing_extensions==4.5.0, remove en_core_web_sm

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -18,8 +18,8 @@ WORKDIR /app
18
 
19
  RUN --mount=type=secret,id=LICENSE_KEY,mode=0444,required=true \
20
  pip install --upgrade pip \
21
- && pip install prodigy -f https://$(cat /run/secrets/LICENSE_KEY)@download.prodi.gy \
22
- && python -m spacy download en_core_web_sm
23
 
24
  RUN chmod 777 .
25
 
 
18
 
19
  RUN --mount=type=secret,id=LICENSE_KEY,mode=0444,required=true \
20
  pip install --upgrade pip \
21
+ && pip install typing_extensions==4.5.0 \
22
+ && pip install prodigy -f https://$(cat /run/secrets/LICENSE_KEY)@download.prodi.gy
23
 
24
  RUN chmod 777 .
25