mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 16:31:01 +00:00
22 lines
608 B
Docker
22 lines
608 B
Docker
FROM --platform=$BUILDPLATFORM golang:1.20 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-agent
|
|
RUN mkdir -p /etc/woodpecker
|
|
|
|
FROM scratch
|
|
ENV GODEBUG=netdns=go
|
|
EXPOSE 3000
|
|
|
|
# copy certs from build image
|
|
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
# copy agent binary
|
|
COPY --from=build /src/dist/woodpecker-agent /bin/
|
|
COPY --from=build /etc/woodpecker /etc
|
|
|
|
HEALTHCHECK CMD ["/bin/woodpecker-agent", "ping"]
|
|
ENTRYPOINT ["/bin/woodpecker-agent"]
|