We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65123dd commit acccb35Copy full SHA for acccb35
1 file changed
packages/js-sdk/src/template/dockerfileParser.ts
@@ -11,13 +11,18 @@ export interface DockerfileParseResult {
11
instructions: Instruction[]
12
}
13
14
+export interface DockerfileParserFinalInterface {}
15
+
16
export interface DockerfileParserInterface {
17
setWorkdir(workdir: string): DockerfileParserInterface
18
setUser(user: string): DockerfileParserInterface
19
setEnvs(envs: Record<string, string>): DockerfileParserInterface
20
runCmd(command: string): DockerfileParserInterface
21
copy(src: string, dest: string): DockerfileParserInterface
- setStartCmd(startCommand: string, readyCommand: string): any
22
+ setStartCmd(
23
+ startCommand: string,
24
+ readyCommand: string
25
+ ): DockerfileParserFinalInterface
26
27
28
/**
0 commit comments