This repository was archived by the owner on Jun 3, 2025. It is now read-only.
Add support for .dockerignore file#394
Merged
priyawadhwa merged 5 commits intoGoogleContainerTools:masterfrom Oct 30, 2018
Merged
Add support for .dockerignore file#394priyawadhwa merged 5 commits intoGoogleContainerTools:masterfrom
priyawadhwa merged 5 commits intoGoogleContainerTools:masterfrom
Conversation
Added a --ignore flag to ignore packages and files in the build context. This should mimic the .dockerignore file. Before starting the build, we go through and delete ignored files from the build context.
It seems like .dockerignore deletes files containeed within the file locally upon docker build, so I created a temporary test dir to make sure the --ignore flag works. We make sure it exists before building docker and kaniko for Dockerfile_test_ignore, and then delete it after the builds have completed.
Contributor
|
What's the overall plan here? Is kaniko going to add support for parsing .dockerignore files, or are we doing to expect users to set this flag? |
efa3321 to
d2dc342
Compare
sharifelgamal
approved these changes
Oct 30, 2018
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
kaniko should support the .dockerignore file. If it finds one in the build context, it will parse the file and delete all matching paths from the build context. It will then delete the .dockerignore before starting the build.
Should fix #384