-
Notifications
You must be signed in to change notification settings - Fork 122
Open
Description
Aside: Did a quick experiment with Balena Cloud. Super impressed. Very smooth getting started for the first time.
I noticed a UTF8 decoding bug in the log viewer.
¿Yo? doesn't get rendered correctly.
See screenshot:
My helloworld project looks like this:
package main
import (
"fmt"
"time"
)
func main() {
for {
fmt.Println(time.Now(), "¿Yo?")
time.Sleep(5 * time.Second)
}
}
module balena-exp
go 1.25
FROM golang:1.25 AS build
WORKDIR /go/src/app
COPY . .
RUN go mod download
#RUN go vet -v
#RUN go test -v
RUN CGO_ENABLED=0 go build -o /go/bin/app
FROM gcr.io/distroless/static-debian12
COPY --from=build /go/bin/app /
CMD ["/app"]
Metadata
Metadata
Assignees
Labels
No labels