FROM nvcr.io/nvidia/pytorch:21.10-py3 (#6671)
Browse files22.10 returns 'no space left on device' error message.
Seems like a bug at docker. Raised issue in https://github.com/docker/hub-feedback/issues/2209
- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
# YOLOv5 π by Ultralytics, GPL-3.0 license
|
2 |
|
3 |
# Start FROM Nvidia PyTorch image https://ngc.nvidia.com/catalog/containers/nvidia:pytorch
|
4 |
-
FROM nvcr.io/nvidia/pytorch:
|
5 |
|
6 |
# Install linux packages
|
7 |
RUN apt update && apt install -y zip htop screen libgl1-mesa-glx
|
|
|
1 |
# YOLOv5 π by Ultralytics, GPL-3.0 license
|
2 |
|
3 |
# Start FROM Nvidia PyTorch image https://ngc.nvidia.com/catalog/containers/nvidia:pytorch
|
4 |
+
FROM nvcr.io/nvidia/pytorch:21.10-py3
|
5 |
|
6 |
# Install linux packages
|
7 |
RUN apt update && apt install -y zip htop screen libgl1-mesa-glx
|