mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 11:51:02 +00:00
7ee0bc4033
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | docker.io/alpine | | minor | `3.18` -> `3.19` | | docker.io/alpine | final | minor | `3.18` -> `3.19` | --- ### Configuration 📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - "before 4am" (UTC). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/woodpecker-ci/woodpecker). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy45My4xIiwidXBkYXRlZEluVmVyIjoiMzcuOTMuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
18 lines
642 B
Docker
18 lines
642 B
Docker
FROM docker.io/alpine:3.19
|
|
|
|
# renovate: datasource=repology depName=alpine_3_18/ca-certificates versioning=loose
|
|
ENV CA_CERTIFICATES_VERSION="20230506-r0"
|
|
|
|
ARG TARGETOS TARGETARCH
|
|
RUN apk add -U --no-cache ca-certificates=${CA_CERTIFICATES_VERSION}
|
|
ENV GODEBUG=netdns=go
|
|
ENV WOODPECKER_DATABASE_DATASOURCE=/var/lib/woodpecker/woodpecker.sqlite
|
|
ENV WOODPECKER_DATABASE_DRIVER=sqlite3
|
|
ENV XDG_CACHE_HOME=/var/lib/woodpecker
|
|
ENV XDG_DATA_HOME=/var/lib/woodpecker
|
|
EXPOSE 8000 9000 80 443
|
|
|
|
COPY dist/server/${TARGETOS}/${TARGETARCH}/woodpecker-server /bin/
|
|
|
|
HEALTHCHECK CMD ["/bin/woodpecker-server", "ping"]
|
|
ENTRYPOINT ["/bin/woodpecker-server"]
|