最佳答案
在Dockerfile中,我有
COPY . .
我想排除整个目录,在我的例子中是node_modules目录。
就像这样:
COPY [all but **/node_modules/**] .
Docker能做到这一点吗?