first commit

This commit is contained in:
2025-10-31 17:54:29 +07:00
commit db01b8564d
1066 changed files with 424853 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM golang:1.25-alpine AS builder
WORKDIR /app
COPY . .
RUN go build -mod vendor -o app_api ./main.go
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/app_api .
EXPOSE 8080
CMD ["./app_api"]