Spaces:
Sleeping
Sleeping
clean up Dockerfile
Browse files- 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 |
-
|
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 |
|