Spaces:
Sleeping
Sleeping
Rajeev-86
commited on
Commit
·
fc76951
1
Parent(s):
1e58902
added more cleanup commands on Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -17,7 +17,9 @@ RUN pip install --no-cache-dir gdown && \
|
|
| 17 |
gdown 1yZfaeCagywUGfObCyhwNvd9hYVdXH84t -O model_store/UNET.mar && \
|
| 18 |
gdown 1632np236SU0ZFM9Li4EbcwpNyLPcio9A -O model_store/R-UNET.mar && \
|
| 19 |
gdown 1LyE6FQzY6wQI0nWwj3s1O29jseiF5-xo -O model_store/A-R-UNET.mar && \
|
| 20 |
-
pip uninstall gdown -y
|
|
|
|
|
|
|
| 21 |
|
| 22 |
USER model-server
|
| 23 |
|
|
|
|
| 17 |
gdown 1yZfaeCagywUGfObCyhwNvd9hYVdXH84t -O model_store/UNET.mar && \
|
| 18 |
gdown 1632np236SU0ZFM9Li4EbcwpNyLPcio9A -O model_store/R-UNET.mar && \
|
| 19 |
gdown 1LyE6FQzY6wQI0nWwj3s1O29jseiF5-xo -O model_store/A-R-UNET.mar && \
|
| 20 |
+
pip uninstall gdown -y && \
|
| 21 |
+
rm -rf /root/.cache/pip && \
|
| 22 |
+
rm -rf /var/lib/apt/lists/*
|
| 23 |
|
| 24 |
USER model-server
|
| 25 |
|