Dockerfile 763 B

1234567891011121314151617181920212223
  1. FROM golang:1.19 as builder
  2. WORKDIR /workspaces
  3. COPY . ./
  4. ENV GOPROXY=https://goproxy.cn,direct
  5. RUN go get -d -v ./
  6. RUN GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -a -installsuffix cgo -o demo -ldflags="-w -s" main.go
  7. FROM alpine:latest as runner
  8. WORKDIR /app
  9. COPY --from=builder /app/main .
  10. COPY --from=builder /app/config ./config
  11. RUN echo "https://mirrors.aliyun.com/alpine/v3.8/main/" > /etc/apk/repositories \
  12. && echo "https://mirrors.aliyun.com/alpine/v3.8/community/" >> /etc/apk/repositories \
  13. && apk add --no-cache tzdata \
  14. && cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
  15. && echo Asia/Shanghai > /etc/timezone \
  16. && apk del tzdata
  17. EXPOSE 8888
  18. VOLUME ["/app/config","/app/log"]
  19. ENTRYPOINT ["./main"]
  20. CMD [ "/app/demo" ]