frontend structiure generated

This commit is contained in:
2025-04-17 17:00:15 +02:00
parent 22b6f3bd2a
commit 3ee632b683
15 changed files with 720 additions and 30 deletions

View File

@@ -1,5 +1,5 @@
# Stage 1: Build the Go binary
FROM golang:1.21-alpine AS builder
FROM golang:1.24-alpine AS builder
WORKDIR /app
@@ -16,6 +16,8 @@ RUN go build -o wagfarm-api main.go
# Stage 2: Minimal runtime image
FROM alpine:latest
RUN apk add curl
WORKDIR /root/
# Copy the binary from the builder