Tag: dockeran

水蟒docker图片

我正在玩Docker。 鉴于以下简单的Dockerfile: # Set the base image to Ubuntu FROM continuumio/miniconda3 # File Author / Maintainer MAINTAINER Thomas Schmelzer ADD . /pybank WORKDIR /pybank # build the environment RUN conda install -y –file production.txt && conda clean –all –yes && nosetests 生成的图像就像1.0 GB。 在production.txt中是pandas和鼻子。 运行的图像中的pybank项目的文件夹是230 KB。 我正在阅读很多关于黑客试图吱吱作响的图像。 有任何想法吗? 以下是docker历史的输出: IMAGE CREATED CREATED BY SIZE COMMENT […]