Squashed inappropriate git messages

This commit is contained in:
2024-12-04 19:09:32 -06:00
commit 40f9e1d6be
53 changed files with 72233 additions and 0 deletions

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM golang:1.23.1 as build
WORKDIR /app
COPY . .
RUN go mod download
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o /go/bin/app
FROM gcr.io/distroless/base-debian12
COPY --from=build /go/bin/app /
EXPOSE 8080
CMD [ "/app" ]