From 6f58b573721b0296adc1589b24608dd698665017 Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Mon, 21 Jul 2025 20:40:50 -0700 Subject: [PATCH] (FIX): Trying again --- Dockerfile | 3 --- go.mod | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8fae995..1f0b0e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,11 @@ # Fetch stage FROM golang:latest AS fetch-stage -COPY go.mod go.sum /app - COPY . /app WORKDIR /app RUN go mod tidy - RUN go mod download # Generate stage diff --git a/go.mod b/go.mod index 2a7b6ff..31e6e1b 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/haydenhargreaves/Potion go 1.24.3 require ( - github.com/a-h/templ v0.3.898 + github.com/a-h/templ v0.3.920 github.com/a-h/templ/examples/integration-gin v0.0.0-20250610141150-9b34663a6ef0 github.com/gin-contrib/cors v1.7.5 github.com/gin-gonic/gin v1.10.1