mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-13 11:05:28 +00:00
add cli rootless image
This commit is contained in:
parent
a5138f7572
commit
7e30ed648f
1 changed files with 25 additions and 0 deletions
25
docker/Dockerfile.cli.alpine.multiarch.rootless
Normal file
25
docker/Dockerfile.cli.alpine.multiarch.rootless
Normal file
|
@ -0,0 +1,25 @@
|
|||
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-cli
|
||||
|
||||
FROM docker.io/alpine:3.21
|
||||
WORKDIR /woodpecker
|
||||
|
||||
RUN apk add -U --no-cache ca-certificates
|
||||
|
||||
ENV GODEBUG=netdns=go
|
||||
ENV WOODPECKER_DISABLE_UPDATE_CHECK=true
|
||||
|
||||
COPY --from=build /src/dist/woodpecker-cli /bin/
|
||||
|
||||
RUN addgroup -S woodpecker && adduser -S woodpecker -G woodpecker
|
||||
|
||||
USER woodpecker
|
||||
|
||||
HEALTHCHECK CMD ["/bin/woodpecker-cli", "ping"]
|
||||
ENTRYPOINT ["/bin/woodpecker-cli"]
|
Loading…
Reference in a new issue