Spaces:
Sleeping
Sleeping
Update Dockerfile to --quiet prodigy pip install
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -19,7 +19,7 @@ WORKDIR /app
|
|
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 |
|
|
|
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 --quiet prodigy -f https://$(cat /run/secrets/LICENSE_KEY)@download.prodi.gy
|
23 |
|
24 |
RUN chmod 777 .
|
25 |
|