2024-02-16 15:40:46 +00:00
|
|
|
FROM --platform=$BUILDPLATFORM docker.io/golang:1.22 AS build
|
2021-12-21 01:35:48 +00:00
|
|
|
|
|
|
|
WORKDIR /src
|
|
|
|
COPY . .
|
2023-08-18 14:39:18 +00:00
|
|
|
ARG TARGETOS TARGETARCH CI_COMMIT_SHA CI_COMMIT_TAG CI_COMMIT_BRANCH
|
2021-12-21 01:35:48 +00:00
|
|
|
RUN --mount=type=cache,target=/root/.cache/go-build \
|
|
|
|
--mount=type=cache,target=/go/pkg \
|
|
|
|
make build-agent
|
2023-07-02 15:22:05 +00:00
|
|
|
RUN mkdir -p /etc/woodpecker
|
2021-12-21 01:35:48 +00:00
|
|
|
|
|
|
|
FROM scratch
|
|
|
|
ENV GODEBUG=netdns=go
|
|
|
|
EXPOSE 3000
|
|
|
|
|
2023-03-20 23:48:15 +00:00
|
|
|
# copy certs from build image
|
2021-12-21 01:35:48 +00:00
|
|
|
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
|
|
# copy agent binary
|
2022-03-01 15:40:24 +00:00
|
|
|
COPY --from=build /src/dist/woodpecker-agent /bin/
|
2023-07-02 15:22:05 +00:00
|
|
|
COPY --from=build /etc/woodpecker /etc
|
2021-12-21 01:35:48 +00:00
|
|
|
|
|
|
|
HEALTHCHECK CMD ["/bin/woodpecker-agent", "ping"]
|
|
|
|
ENTRYPOINT ["/bin/woodpecker-agent"]
|