Push newest version
Some checks failed
build-and-push / docker (push) Failing after 10m4s

This commit is contained in:
2025-09-19 09:34:01 +02:00
parent a2743dd7fb
commit c8aa3fb3b2
5 changed files with 452 additions and 133 deletions

View File

@@ -4,7 +4,10 @@ FROM golang:1.24-alpine AS builder
WORKDIR /src
# Install build dependencies (none needed for static build) and enable static build
ENV CGO_ENABLED=0 GOOS=linux GOARCH=amd64
# Make the build architecture-aware for buildx multi-arch builds
ARG TARGETOS
ARG TARGETARCH
ENV CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH}
# Cache go modules
COPY app/web/go.mod ./app/web/