(FIX): Trying again
Some checks failed
Deploy application with Docker / build_and_deploy (push) Failing after 15s

This commit is contained in:
Hayden Hargreaves 2025-07-21 20:40:50 -07:00
parent be0b580c19
commit 6f58b57372
2 changed files with 1 additions and 4 deletions

View File

@ -1,14 +1,11 @@
# Fetch stage # Fetch stage
FROM golang:latest AS fetch-stage FROM golang:latest AS fetch-stage
COPY go.mod go.sum /app
COPY . /app COPY . /app
WORKDIR /app WORKDIR /app
RUN go mod tidy RUN go mod tidy
RUN go mod download RUN go mod download
# Generate stage # Generate stage

2
go.mod
View File

@ -3,7 +3,7 @@ module github.com/haydenhargreaves/Potion
go 1.24.3 go 1.24.3
require ( 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/a-h/templ/examples/integration-gin v0.0.0-20250610141150-9b34663a6ef0
github.com/gin-contrib/cors v1.7.5 github.com/gin-contrib/cors v1.7.5
github.com/gin-gonic/gin v1.10.1 github.com/gin-gonic/gin v1.10.1