Skip to content

Commit

Permalink
Support Dockerfile too
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Jan 29, 2025
1 parent 258daa7 commit 93cb0d7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions repo2docker/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ def build(
args += [d]

yield from execute_cmd(args, True)
else:
# Assume 'path' is passed in
args += [path]

yield from execute_cmd(args, True)

def images(self):
images = self._apiclient.images()
Expand Down

0 comments on commit 93cb0d7

Please sign in to comment.