2021-06-03 07:43:44 +00:00
|
|
|
FROM alpine:latest
|
|
|
|
|
2021-06-03 07:54:32 +00:00
|
|
|
RUN apk add --no-cache \
|
|
|
|
bash \
|
|
|
|
curl \
|
|
|
|
git \
|
|
|
|
jq \
|
|
|
|
py3-requests \
|
|
|
|
skopeo \
|
2021-06-03 07:58:28 +00:00
|
|
|
util-linux \
|
2021-06-03 07:54:32 +00:00
|
|
|
yq
|
2021-06-03 07:43:44 +00:00
|
|
|
|
|
|
|
RUN mkdir -p ~./local/bin
|
|
|
|
|
|
|
|
RUN curl https://install.abra.coopcloud.tech | bash -s
|
|
|
|
|
|
|
|
ENTRYPOINT ["/root/.local/bin/abra"]
|