mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-01 06:48:50 +00:00
65a429d24a
fixes #3389 Set variable to let server detect if it's deployed within a container image. Set the default database connection based on this. --------- Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Anbraten <6918444+anbraten@users.noreply.github.com>
18 lines
641 B
Docker
18 lines
641 B
Docker
FROM --platform=$BUILDPLATFORM docker.io/golang:1.22 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"]
|