We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a51235f commit 09e503cCopy full SHA for 09e503c
repo2docker/buildpacks/base.py
@@ -612,6 +612,7 @@ def _filter_tar(tarinfo):
612
exclude = []
613
614
for ignore_file_name in [".dockerignore", ".containerignore"]:
615
+ ignore_file_name = self.binder_path(ignore_file_name)
616
if os.path.exists(ignore_file_name):
617
with open(ignore_file_name) as ignore_file:
618
cleaned_lines = [
0 commit comments