Skip to content

Commit 947b073

Browse files
committed
fix: add missing arguments to DockerBuildPack build function
1 parent 379248f commit 947b073

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

repo2docker/buildpacks/docker.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import docker
66

7-
from .base import BuildPack
7+
from .base import BuildPack, ExcludesStrategy
88

99

1010
class DockerBuildPack(BuildPack):
@@ -31,6 +31,8 @@ def build(
3131
cache_from,
3232
extra_build_kwargs,
3333
platform=None,
34+
extra_ignore_file=None,
35+
ignore_file_strategy=ExcludesStrategy.THEIRS,
3436
):
3537
"""Build a Docker image based on the Dockerfile in the source repo."""
3638
# If you work on this bit of code check the corresponding code in

0 commit comments

Comments
 (0)