Merge in workflows and Dockerization #27

Merged
azpect merged 6 commits from dev into master 2025-07-21 21:33:13 -07:00
Showing only changes of commit 031ae205da - Show all commits

View File

@ -3,10 +3,13 @@ FROM golang:latest AS fetch-stage
COPY go.mod go.sum /app COPY go.mod go.sum /app
COPY . /app
WORKDIR /app WORKDIR /app
RUN go mod download RUN go mod tidy
RUN go mod download
# Generate stage # Generate stage
FROM ghcr.io/a-h/templ:latest AS generate-stage FROM ghcr.io/a-h/templ:latest AS generate-stage