diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b061a4a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM golang:1.18 as builder +WORKDIR /build +COPY . . +RUN CGO_ENABLED=0 GOPROXY=https://proxy.golang.com.cn,direct go build -o demo +FROM alpine:3.10 as runner +LABEL description="the image is a demo" +WORKDIR /app +COPY --from=builder /build/demo /app/ +EXPOSE 8080 +ENTRYPOINT ["./demo"] \ No newline at end of file