Repository is not signed in docker build

后端 未结 8 1112
滥情空心
滥情空心 2021-01-31 14:15

I have the following Dockerfile that uses the latest Ubuntu image pulled from dockerhub:

FROM ubuntu:latest  
RUN apt-get update  && apt-get install -y           


        
8条回答
  •  心在旅途
    2021-01-31 14:19

    fixed by

    docker image prune -f
    

    looks like docker has a limit on maximum apt cache size on the host system

提交回复
热议问题