softplayer-controller/Containerfile

15 lines
357 B
Plaintext
Raw Permalink Normal View History

2024-05-10 11:19:46 +00:00
FROM fluxcd/flux-cli:v2.2.3 as flux-source
2024-05-10 11:18:06 +00:00
WORKDIR /out
RUN cp $(which flux) .
2024-05-10 11:23:06 +00:00
FROM mikefarah/yq as yq-source
WORKDIR /out
RUN cp $(which yq) .
2024-04-02 15:21:21 +00:00
FROM ghcr.io/flant/shell-operator:latest
2024-04-02 16:10:55 +00:00
RUN apk update && apk add envsubst --no-cache
2024-05-10 11:18:06 +00:00
COPY --from=flux-source /out/flux /usr/bin/flux
2024-05-10 11:23:06 +00:00
COPY --from=yq-source /out/yq /usr/bin/yq
2024-04-02 15:21:21 +00:00
ADD /hooks /hooks
ADD /tpls /tpls