-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Extend options * Mark fields as required. * Provide fallback for empty options * Build new version * update readme Co-authored-by: David Schovanec <[email protected]>
- Loading branch information
Showing
8 changed files
with
230 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
export declare const buildDockerImage: ({ dockerFilePath, herokuAppName, }: { | ||
export declare const buildDockerImage: ({ dockerfileName, dockerFilePath, dockerOptions, herokuAppName, }: { | ||
dockerfileName: string; | ||
dockerFilePath: string; | ||
dockerOptions?: string | undefined; | ||
herokuAppName: string; | ||
}) => Promise<boolean>; |
Oops, something went wrong.