标签: docker dockerfile
如果像这样定义多级Dockerfile:
Dockerfile
FROM exampleabc:latest COPY app.go . FROM alpine:latest RUN apk --no-cache add ca-certificates WORKDIR /root/ COPY --from=0 /go/src/github.com/alexellis/href-counter/app . CMD ["./app"]
exampleabc:latest是否会执行它的入口点?
exampleabc:latest
答案 0 :(得分:1)
来自official documentation:
只有Dockerfile中的最后一个ENTRYPOINT指令才会生效。