certimate/Dockerfile
2024-08-28 00:37:08 +08:00

9 lines
144 B
Docker

FROM golang:1.22-alpine
WORKDIR /app
COPY ../. /app/
RUN go build -o certimate
ENTRYPOINT ["./certimate", "serve", "--http", "0.0.0.0:8090"]