abra/Dockerfile

18 lines
247 B
Docker
Raw Normal View History

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 \
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"]