drone-kubernetes/Dockerfile

20 lines
285 B
Docker
Raw Permalink Normal View History

2023-11-03 11:23:48 +08:00
FROM golang:alpine as build
2023-11-02 17:24:36 +08:00
2023-11-03 10:43:04 +08:00
WORKDIR /build
2023-11-02 17:24:36 +08:00
COPY . .
ENV GO111MODULE=on
ENV GOPROXY=https://goproxy.cn,direct
2023-11-03 11:23:48 +08:00
RUN go mod download && go build -o app
2023-11-02 17:24:36 +08:00
2023-11-03 11:23:48 +08:00
RUN ls -lh && chmod +x ./app
2023-11-02 17:24:36 +08:00
FROM alpine
2023-11-03 10:43:04 +08:00
COPY --from=build /build/app /bin
2023-11-02 17:24:36 +08:00
2023-11-03 11:31:50 +08:00
RUN ls -al /bin/ | grep 'app'
2023-11-03 11:23:48 +08:00
2023-11-03 10:43:04 +08:00
ENTRYPOINT ["/bin/app"]