如何根据命令的输出设置环境变量?

时间:2017-11-03 16:50:17

标签: docker dockerfile

Dockerfile内:

ENV CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)"

这不会导致lsb_release -c -s命令被替换。

RUN export CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)"

也不起作用。

我如何实现上述目标?

0 个答案:

没有答案