No changes made

This commit is contained in:
2025-04-16 12:47:04 -04:00
commit 1ed3b0c2d4
98 changed files with 8857 additions and 0 deletions

19
backend/Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM siteworxpro/golang:1.24.0 AS build
WORKDIR /app
ARG CGO_ENABLED=0
ARG GOOS=linux
ARG GOPROXY=direct
ARG GOPRIVATE=git.s.int
ADD . .
RUN go mod tidy
RUN go build -o app
FROM scratch
COPY --from=build /app/app .
ENTRYPOINT ["/app"]