go mod tidy

This commit is contained in:
yoan
2024-10-11 22:28:26 +08:00
parent 8c1033634d
commit f914931bc9
3 changed files with 4 additions and 4 deletions

View File

@@ -1,16 +0,0 @@
FROM golang:1.22-alpine as builder
WORKDIR /app
COPY ../. /app/
RUN go build -o certimate
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/certimate .
ENTRYPOINT ["./certimate", "serve", "--http", "0.0.0.0:8090"]