commit laplace repo

This commit is contained in:
2025-06-24 17:11:13 +01:00
commit d421a5b009
20 changed files with 1735 additions and 0 deletions

15
laplace/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM golang:latest as builder
LABEL maintainer="Adam Jordan <adamyordan@gmail.com>"
WORKDIR /build
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o laplace .
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /root/
COPY --from=builder /build/laplace .
COPY files files
EXPOSE 443
CMD ["./laplace"]