Dockerfile Do you want to continue? [Y/n] Abort

尽量避免使用RUN apt-get upgrade或者dist-upgrade,因为基础镜像的很多核心包不会再未授权的容器中升级。

要结合RUN apt-get update和apt-get install在同一个RUN语句下一起使用。如:

RUN apt-get update && apt-get install -y \

          package-bar \

          package-baz 

你可能感兴趣的:(Dockerfile Do you want to continue? [Y/n] Abort)