certimate/Dockerfile
2024-08-28 01:06:20 +08:00

11 lines
176 B
Docker

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