Spaces:
Sleeping
Sleeping
Update Dockerfile for typing_extensions==4.5.0, remove en_core_web_sm
Browse files- 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
|
22 |
-
&&
|
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 |
|