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 379248f commit 947b073Copy full SHA for 947b073
repo2docker/buildpacks/docker.py
@@ -4,7 +4,7 @@
4
5
import docker
6
7
-from .base import BuildPack
+from .base import BuildPack, ExcludesStrategy
8
9
10
class DockerBuildPack(BuildPack):
@@ -31,6 +31,8 @@ def build(
31
cache_from,
32
extra_build_kwargs,
33
platform=None,
34
+ extra_ignore_file=None,
35
+ ignore_file_strategy=ExcludesStrategy.THEIRS,
36
):
37
"""Build a Docker image based on the Dockerfile in the source repo."""
38
# If you work on this bit of code check the corresponding code in
0 commit comments