File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ in < From : Text
7
7
| Env : Prelude.Map. Type Text Text
8
8
| Comment : Text
9
9
| Run : Text
10
+ | Cmd : List Text
10
11
| Exec : List Text
11
12
| Workdir : Text
12
13
| Entrypoint : List Text
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ let renderStatement =
16
16
, Comment = prefixText " #"
17
17
, Workdir = prefixText " WORKDIR"
18
18
, Run = prefixText " RUN"
19
+ , Cmd = prefixTextList " CMD"
19
20
, Exec = prefixTextList " RUN"
20
21
, Entrypoint = prefixTextList " ENTRYPOINT"
21
22
, Env = ./ Env. dhall
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ ENTRYPOINT ["emacs"]
37
37
The package implements the [ Containerfile reference] [ ref ] with these changes:
38
38
39
39
* ` Exec ` is the ` RUN ` exec form
40
+ * ` Cmd ` only support the preferred exec form
40
41
* ` Empty ` denote an empty lines
41
42
42
43
@@ -51,6 +52,7 @@ in < From : Text
51
52
| Env : Prelude.Map. Type Text Text
52
53
| Comment : Text
53
54
| Run : Text
55
+ | Cmd : List Text
54
56
| Exec : List Text
55
57
| Workdir : Text
56
58
| Entrypoint : List Text
You can’t perform that action at this time.
0 commit comments