mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-22 01:41:02 +00:00
116ce27524
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
24 lines
784 B
Docker
24 lines
784 B
Docker
FROM --platform=$BUILDPLATFORM docker.io/golang:1.23 AS build
|
|
|
|
WORKDIR /src
|
|
COPY . .
|
|
ARG TARGETOS TARGETARCH CI_COMMIT_SHA CI_COMMIT_TAG CI_COMMIT_BRANCH
|
|
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
|
|
# Internal setting do NOT change! Signals that woodpecker is running inside a container
|
|
ENV WOODPECKER_IN_CONTAINER=true
|
|
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"]
|