From 031ae205da155a5b294c2706506c6a7c8fcac537 Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Mon, 21 Jul 2025 20:30:42 -0700 Subject: [PATCH] (FIX): Added tidy to the Dockerfile. Should work in actions --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a018fdb..8fae995 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,13 @@ FROM golang:latest AS fetch-stage COPY go.mod go.sum /app +COPY . /app + WORKDIR /app -RUN go mod download +RUN go mod tidy +RUN go mod download # Generate stage FROM ghcr.io/a-h/templ:latest AS generate-stage