在Dockerfile中,我有
COPY . .
我想排除整个目录,例如我的node_modules目录。
像这样:
COPY [all but **/node_modules/**] .
Docker有可能吗?
.dockerignore在您的docker build上下文目录中创建文件(因此,在这种情况下,很可能是node_modules的父目录),其中只有一行:
.dockerignore
**/node_modules
尽管您可能只想:
node_modules
有关dockerignore的信息:https ://docs.docker.com/engine/reference/builder/#dockerignore- file