new updated 14 april 2026

This commit is contained in:
root
2026-04-16 05:02:57 +00:00
commit 64b9415ce0
187 changed files with 69998 additions and 0 deletions

No files matched your search

+15
View File
@@ -0,0 +1,15 @@
# Build stage
FROM golang:1.23-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o main .
# Runtime stage
FROM alpine:latest
WORKDIR /app
RUN apk add --no-cache ca-certificates
COPY --from=builder /app/main .
EXPOSE 8081
CMD ["./main"]