File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
packages/js-sdk/src/template Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,18 @@ export interface DockerfileParseResult {
1111 instructions : Instruction [ ]
1212}
1313
14+ export interface DockerfileParserFinalInterface { }
15+
1416export interface DockerfileParserInterface {
1517 setWorkdir ( workdir : string ) : DockerfileParserInterface
1618 setUser ( user : string ) : DockerfileParserInterface
1719 setEnvs ( envs : Record < string , string > ) : DockerfileParserInterface
1820 runCmd ( command : string ) : DockerfileParserInterface
1921 copy ( src : string , dest : string ) : DockerfileParserInterface
20- setStartCmd ( startCommand : string , readyCommand : string ) : any
22+ setStartCmd (
23+ startCommand : string ,
24+ readyCommand : string
25+ ) : DockerfileParserFinalInterface
2126}
2227
2328/**
You can’t perform that action at this time.
0 commit comments