mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 20:51:41 +00:00
116ce27524
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
18 lines
641 B
Docker
18 lines
641 B
Docker
FROM --platform=$BUILDPLATFORM docker.io/golang:1.23 AS certs
|
|
|
|
FROM scratch
|
|
ARG TARGETOS TARGETARCH
|
|
ENV GODEBUG=netdns=go
|
|
# Internal setting do NOT change! Signals that woodpecker is running inside a container
|
|
ENV WOODPECKER_IN_CONTAINER=true
|
|
ENV XDG_CACHE_HOME=/var/lib/woodpecker
|
|
ENV XDG_DATA_HOME=/var/lib/woodpecker
|
|
EXPOSE 8000 9000 80 443
|
|
|
|
# copy certs from certs image
|
|
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
# copy server binary
|
|
COPY dist/server/${TARGETOS}_${TARGETARCH}/woodpecker-server /bin/
|
|
|
|
HEALTHCHECK CMD ["/bin/woodpecker-server", "ping"]
|
|
ENTRYPOINT ["/bin/woodpecker-server"]
|