2023-04-24 18:59:30 +00:00
|
|
|
FROM registry.hub.docker.com/rclone/rclone AS rclone
|
|
|
|
WORKDIR /out
|
|
|
|
RUN cp $(which rclone) /out/rclone
|
|
|
|
|
|
|
|
FROM registry.hub.docker.com/argoproj/argocd as argocd
|
|
|
|
WORKDIR /out
|
|
|
|
RUN cp $(which argocd) /out/argocd
|
|
|
|
|
|
|
|
|
|
|
|
FROM registry.hub.docker.com/library/alpine
|
|
|
|
RUN apk update --no-cache&&\
|
2024-07-14 09:08:24 +00:00
|
|
|
apk add yq gettext openssl curl jq perl git git-lfs netavark\
|
2023-05-24 07:11:39 +00:00
|
|
|
buildah cni-plugins iptables ip6tables fuse-overlayfs --no-cache
|
2023-04-24 18:59:30 +00:00
|
|
|
COPY --from=rclone /out/rclone /usr/bin/rclone
|
|
|
|
COPY --from=argocd /out/argocd /usr/bin/argocd
|
2023-05-27 21:07:58 +00:00
|
|
|
COPY ./scripts/ /usr/bin/
|