From d8f68bfe7631b8fdec9dddd7314c2f9a2fe3f447 Mon Sep 17 00:00:00 2001 From: Cory LaNou Date: Sun, 15 Mar 2026 12:54:54 -0500 Subject: [PATCH] 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. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index afd206e..048cbc6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM golang:1.25 AS builder -RUN go install github.com/gopherguides/hype/cmd/hype@latest +RUN go install github.com/gopherguides/hype/cmd/hype@main FROM golang:1.25 COPY --from=builder /go/bin/hype /usr/local/bin/hype