Skip to content

Commit d8f68bf

Browse files
committed
fix: install hype from main branch in Dockerfile
The @latest tag resolves to the last GitHub release which doesn't include the first/after template functions yet. Use @main to install from the latest commit.
1 parent 9b8741a commit d8f68bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM golang:1.25 AS builder
2-
RUN go install github.com/gopherguides/hype/cmd/hype@latest
2+
RUN go install github.com/gopherguides/hype/cmd/hype@main
33

44
FROM golang:1.25
55
COPY --from=builder /go/bin/hype /usr/local/bin/hype

0 commit comments

Comments
 (0)