wesslen commited on
Commit
72983bb
1 Parent(s): be2da5c

clean up Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -6
Dockerfile CHANGED
@@ -18,12 +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
- # && pip install --trusted-host pypi.python.org -r requirements.txt
23
- # COPY wheel/prodigy-xxx-linux_x86_64.whl ./wheel/
24
- # RUN pip install wheel/prodigy-xxx-linux_x86_64.whl \
25
- # && rm -rf wheel/prodigy-xxx-linux_x86_64.whl
26
- RUN python -m spacy download en_core_web_sm
27
 
28
  RUN chmod 777 .
29
 
 
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