我在Dockerfile中有一行试图将ARG设置为数组。我尝试了几种不同的方法:
ARG rubies_to_install=('2.5.5' '2.6.2')
ARG rubies_to_install=(2.5.5 2.6.2)
构建图像时,出现以下错误:
Error response from daemon: Dockerfile parse error line 9: ARG requires exactly one argument
将docker arg设置为字符串数组的正确方法是什么?