Skip to content

Commit

Permalink
fix: add missing arguments to DockerBuildPack build function
Browse files Browse the repository at this point in the history
  • Loading branch information
sgaist committed Feb 5, 2024
1 parent 379248f commit 947b073
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion repo2docker/buildpacks/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import docker

from .base import BuildPack
from .base import BuildPack, ExcludesStrategy


class DockerBuildPack(BuildPack):
Expand All @@ -31,6 +31,8 @@ def build(
cache_from,
extra_build_kwargs,
platform=None,
extra_ignore_file=None,
ignore_file_strategy=ExcludesStrategy.THEIRS,
):
"""Build a Docker image based on the Dockerfile in the source repo."""
# If you work on this bit of code check the corresponding code in
Expand Down

0 comments on commit 947b073

Please sign in to comment.