dockerfile로 image를 생성하다 보면, Could not install packages due to an OSError: [Errno 28] No space left on device 와 같은 에러가 발생할 때가 있다. 주로, cache값을 많이 먹게 되는 dockerfile에서 RUN pip install -r requirements.txt을 반복적으로 하다가 이와 같은 에러가 발생하는 경우가 많다. stackoverflow에서 검색해본 결과, inode가 꽉차서 그렇다고 한다. docker system prune docker volume prune #To see all volumes docker volume ls #To show docker disk usage docker system df..