artifacts/oci/fluxcd/flux-image-automation-controller.Dockerfile
2023-02-16 13:07:27 +08:00

10 lines
357 B
Docker

FROM ghcr.io/fluxcd/image-automation-controller:v0.23.4 as build
FROM artifact.onwalk.net/k8s/alpine-ca:3.13 as prod
ARG TARGETPLATFORM
RUN [ ! -e /etc/nsswitch.conf ] && echo 'hosts: files dns' > /etc/nsswitch.conf
COPY --from=build /usr/local/bin/image-automation-controller /usr/local/bin/
USER 65534:65534
ENTRYPOINT [ "image-automation-controller" ]