标签: dockerfile
我正尝试将ARG传递给RUN命令,如下所示
FROM ubuntu:18.04 ARG test="apt-get -y update && apt-get -y install curl" RUN $test
但是构建失败,提示“ E:update命令不带参数”