drone-kubernetes/Dockerfile
谢作欢 6455fc01fc
Some checks failed
continuous-integration/drone/tag Build is failing
🐳
2023-11-03 08:51:24 +08:00

20 lines
226 B
Docker

FROM golang as build
WORKDIR /app
COPY . .
ENV GO111MODULE=on
ENV GOPROXY=https://goproxy.cn,direct
RUN go mod download
RUN go build -o app
FROM alpine
WORKDIR /app
COPY --from=build /app/app .
ENTRYPOINT ["/app/app"]