2023-06-05 13:20:09 +08:00
|
|
|
FROM ghcr.io/fluxcd/helm-controller:v0.31.1 as build
|
2023-01-13 10:01:19 +08:00
|
|
|
|
2023-08-08 12:48:34 +08:00
|
|
|
FROM artifact.onwalk.net/base/alpine:latest as prod
|
2023-01-13 16:23:49 +08:00
|
|
|
LABEL org.opencontainers.image.source="https://github.com/fluxcd/helm-controller"
|
|
|
|
|
RUN apk add --no-cache ca-certificates tini
|
|
|
|
|
COPY --from=build /usr/local/bin/helm-controller /usr/local/bin/
|
2023-01-13 10:01:19 +08:00
|
|
|
USER 65534:65534
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT [ "/sbin/tini", "--", "helm-controller" ]
|