mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-25 11:21:02 +00:00
20 lines
523 B
Docker
20 lines
523 B
Docker
|
FROM --platform=$BUILDPLATFORM golang:1.16 AS build
|
||
|
|
||
|
WORKDIR /src
|
||
|
COPY . .
|
||
|
ARG TARGETOS TARGETARCH
|
||
|
RUN --mount=type=cache,target=/root/.cache/go-build \
|
||
|
--mount=type=cache,target=/go/pkg \
|
||
|
make build-cli
|
||
|
|
||
|
FROM scratch
|
||
|
ENV GODEBUG=netdns=go
|
||
|
|
||
|
# copy certs from golang:1.16 image
|
||
|
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
||
|
# copy cli binary
|
||
|
COPY --from=build src/dist/woodpecker-cli /bin/
|
||
|
|
||
|
HEALTHCHECK CMD ["/bin/woodpecker-cli", "ping"]
|
||
|
ENTRYPOINT ["/bin/woodpecker-cli"]
|