We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bffd833 commit ecf23f7Copy full SHA for ecf23f7
.config/turbobob.json
@@ -1,4 +1,5 @@
1
{
2
+ "$schema": "https://raw.githubusercontent.com/function61/turbobob/refs/heads/main/pkg/bobfile/bobfile.schema.json",
3
"for_description_of_this_file_see": "https://github.com/function61/turbobob",
4
"version_major": 1,
5
"project_name": "turbobob",
@@ -28,6 +29,12 @@
28
29
]
30
}
31
],
32
+ "docker_images": [
33
+ {
34
+ "image": "ghcr.io/function61/turbobob",
35
+ "platforms": ["linux/amd64"]
36
+ }
37
+ ],
38
"os_arches": {
39
"linux-amd64": true,
40
"linux-arm": true
Dockerfile
@@ -0,0 +1,5 @@
+FROM alpine:latest
+
+ENTRYPOINT ["/usr/bin/bob"]
+ADD rel/bob_linux-amd64 /usr/bin/bob
0 commit comments