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 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作