File tree 2 files changed +25
-0
lines changed
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ # ## Packer template
2
+ # Cache objects
3
+ packer_cache /
4
+
5
+ # For built boxes
6
+ * .box
7
+
8
+ .idea /*
9
+
Original file line number Diff line number Diff line change
1
+ FROM hashicorp/packer:1.3.5
2
+
3
+ LABEL "com.github.actions.name" = "packer-validate"
4
+ LABEL "com.github.actions.description" = "Validate packer template file in a directory"
5
+ LABEL "com.github.actions.icon" = "alert-circle"
6
+ LABEL "com.github.actions.color" = "orange"
7
+
8
+ LABEL "repository" = "https://github.com/dawitnida/packer-github-actions"
9
+ LABEL "homepage" = "https://github.com/dawitnida/packer-github-actions"
10
+ LABEL "maintainer" =
"Dawit Nida <[email protected] >"
11
+
12
+ RUN apk --no-cache add jq
13
+
14
+ COPY entrypoint.sh /entrypoint.sh
15
+ RUN chmod +x /entrypoint.sh
16
+ ENTRYPOINT ["/entrypoint.sh" ]
You can’t perform that action at this time.
0 commit comments