-
Notifications
You must be signed in to change notification settings - Fork 552
Closed
Labels
Milestone
Description
https://docs.docker.com/build/building/context/#dockerignore states:
If you use multiple Dockerfiles, you can use different ignore-files for each Dockerfile. You do so using a special naming convention for the ignore-files. Place your ignore-file in the same directory as the Dockerfile, and prefix the ignore-file with the name of the Dockerfile.
.
├── index.ts
├── src/
├── docker
│ ├── build.Dockerfile
│ ├── build.Dockerfile.dockerignore
│ ├── lint.Dockerfile
│ ├── lint.Dockerfile.dockerignore
│ ├── test.Dockerfile
│ └── test.Dockerfile.dockerignore
Thus
Lines 1559 to 1561 in ab0c8e3
| "filenames": [ | |
| ".dockerignore" | |
| ] |
Reactions are currently unavailable