我正在尝试使用Docker构建多阶段映像,其中我使用外部映像作为阶段。我正在尝试使用ARG或ENV定义外部映像版本,但似乎不支持该版本。
例如第一个版本,无参数替代有效
Dockerfile
FROM ubuntu:18.04
# This is working
COPY --from=hello-world:latest /hello /hello
Docker构建
$ docker build --no-cache -t test .
Sending build context to Docker daemon 2.048kB
Step 1/2 : FROM ubuntu:18.04
---> 16508e5c265d
Step 2/2 : COPY --from=hello-world:latest /hello /hello
---> 2d52b43d730b
Successfully built 2d52b43d730b
Successfully tagged test:latest
第二个带有自变量替换的版本无效 Docker文件 来自ubuntu:18.04
ARG HELLO_VERSION
ENV HELLO_VERSION ${HELLO_VERSION:-latest}
RUN echo "HELLO_VERSION" $HELLO_VERSION
# This argument substitution is NOT working --I tried both ARG and ENV separately
COPY --from=hello-world:${HELLO_VERSION} /hello /hello
Docker构建
$ docker build --no-cache -t test .
Sending build context to Docker daemon 2.048kB
Step 1/5 : FROM ubuntu:18.04
---> 16508e5c265d
Step 2/5 : ARG HELLO_VERSION
---> Running in bf1c94ecd0ea
Removing intermediate container bf1c94ecd0ea
---> 33608ed5d441
Step 3/5 : ENV HELLO_VERSION ${HELLO_VERSION:-latest}
---> Running in 6bf864ba9e4f
Removing intermediate container 6bf864ba9e4f
---> d08f20e7ccb6
Step 4/5 : RUN echo "HELLO_VERSION" $HELLO_VERSION
---> Running in cd973f372eb4
HELLO_VERSION latest
Removing intermediate container cd973f372eb4
---> b0893a822140
Step 5/5 : COPY --from=hello-world:${HELLO_VERSION} /hello /hello
invalid from flag value hello-world:${HELLO_VERSION}: invalid reference format
您已经经历过吗? 干杯, 奥利维尔
答案 0 :(得分:4)
好。我发现这是Docker方面的未解决问题。 https://github.com/moby/moby/issues/35018
-> ARG
/ ENV
的替换不适用于--
和ADD
中的COPY
值。
就我而言,在Docker中等待更正时有一个解决方法。 https://github.com/docker/cli/issues/996
ARG HELLO_VERSION
FROM hello-world:${HELLO_VERSION:-latest} as hello
FROM ubuntu:18.04
COPY --from=hello /hello /hello