(FIX): Added tidy to the Dockerfile. Should work in actions

This commit is contained in:
Hayden Hargreaves 2025-07-21 20:30:42 -07:00
parent 0017d1a3d5
commit 031ae205da

View File

@ -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