dream989898 2018-06-06 23:17
浏览 309
已采纳

为什么我在这个多阶段构建中的最终docker镜像这么大?

After reading about the enormous image size reductions that are possible with multi-stage docker builds, I'm attempting to slim down the image size for a Dockerfile I have for building a Go binary. My Dockerfile is below.

# Configure environment and build settings.
FROM golang:alpine AS buildstage
ARG name=ddmnh
ENV GOPATH=/gopath

# Create the working directory.
WORKDIR ${GOPATH}

# Copy the repository into the image.
ADD . ${GOPATH}

# Move to GOPATH, install dependencies and build the binary.
RUN cd ${GOPATH} && go get ${name}
RUN CGO_ENABLED=0 GOOS=linux go build ${name}

# Multi-stage build, we just use plain alpine for the final image.
FROM alpine:latest

# Copy the binary from the first stage.
COPY --from=buildstage ${GOPATH}/${name} ./${name}
RUN chmod u+x ./${name}

# Expose Port 80.
EXPOSE 80

# Set the run command.
CMD ./ddmnh

The resulting image, however, doesn't seem to be size reduced at all. I suspect that the golang:alpine image is being included somehow. Below is a screenshot of the results of running docker build . on the Dockerfile above.

docker images

The alpine:latest image is only 4.15MB. Adding the size of the compiled binary (which is relatively small) I would expect no more than, say, maybe 15MB for the final image. But it's 407MB. I'm clearly doing something wrong!

How can I adjust my Dockerfile to produce an image of less size?

  • 写回答

1条回答 默认 最新

  • dongpao2871 2018-06-06 23:41
    关注

    Buried deep in the Docker documentation I found that my ARG and ENV definitions were cleared when I started the final FROM. Redefining them solved the issue:

    # Configure environment and build settings.
    FROM golang:alpine AS buildstage
    ARG name=ddmnh
    ENV GOPATH=/gopath
    
    # Create the working directory.
    WORKDIR ${GOPATH}
    
    # Copy the repository into the image.
    ADD . ${GOPATH}
    
    # Move to GOPATH, install dependencies and build the binary.
    RUN cd ${GOPATH} && go get ${name}
    RUN CGO_ENABLED=0 GOOS=linux go build ${name}
    
    # Multi-stage build, we just use plain alpine for the final image.
    FROM alpine:latest
    ARG name=ddmnh
    ENV GOPATH=/gopath
    
    # Copy the binary from the first stage.
    COPY --from=buildstage ${GOPATH}/${name} ./${name}
    RUN chmod u+x ./${name}
    
    # Expose Port 80.
    EXPOSE 80
    
    # Set the run command.
    CMD ./ddmnh
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 MATLAB怎么通过柱坐标变换画开口是圆形的旋转抛物面?
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题
  • ¥15 Visual Studio问题
  • ¥20 求一个html代码,有偿