我正在尝试使用预定义的TARGETARCH
arg变量通过 buildkit 创建一个多架构 docker 映像。
我想做的是 - 我认为 - 类似 bash 变量间接的东西,但我知道这不受支持,我正在努力想出一个替代方案。
这是我所拥有的:
FROM alpine:latest
# Buildkit should populate this on build with e.g. "arm64" or "amd64"
ARG TARGETARCH
# Set some temp variables via ARG... :/
ARG DOWNLOAD_amd64="x86_64"
ARG DOWNLOAD_arm64="aarch64"
ARG DOWNLOAD_URL="https://download.url/path/to/toolkit-${DOWNLOAD_amd64}"
# DOWNLOAD_URL must also be set in container as ENV var.
ENV DOWNLOAD_URL $DOWNLOAD_URL
RUN echo "Installing Toolkit" && \
curl -sSL ${DOWNLOAD_URL} -o /tmp/toolkit-${DOWNLOAD_amd64}
...这有点伪代码,但希望能说明我正在尝试做的事情:我想要 a 的值$DOWNLOAD_amd64
或$DOWNLOAD_arm64
放入$DOWNLOAD_URL
,具体取决于$TARGETARCH
设置的内容。
这可能是一个长期解决的问题,但要么我在谷歌上搜索错误的东西,要么就是没有得到它。