tangled
alpha
login
or
join now
graham.systems
/
oci-in-spindle
1
fork
atom
Poking around building OCI images on Tangled
1
fork
atom
overview
issues
pulls
pipelines
make linter happy to make build go brrrr
graham.systems
5 months ago
f19b1a64
800755e6
verified
This commit was signed with the committer's
known signature
.
graham.systems
SSH Key Fingerprint:
SHA256:Fvaam8TgCBeBlr/Fo7eA6VGAIAWmzjwUqUTw5o6anWA=
0/1
build.yml
failed
19s
+4
-1
1 changed file
expand all
collapse all
unified
split
main.go
+4
-1
main.go
···
12
12
if err := http.ListenAndServe(
13
13
"localhost:3000",
14
14
http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
15
15
-
w.Write([]byte("hello"))
15
15
+
_, err := w.Write([]byte("hello"))
16
16
+
if err != nil {
17
17
+
fmt.Println("oh no!")
18
18
+
}
16
19
}),
17
20
); err != nil {
18
21
os.Exit(1)