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
|
|
|
|
|
2021-06-03 19:04:58 +00:00
|
|
|
# Note(decentral1se): it is fine to always use the development branch because
|
|
|
|
# our Drone CI docker auto-tagger will publish official release tags and
|
|
|
|
# otherwise give us the latest abra on the latest tag
|
|
|
|
RUN curl https://install.abra.coopcloud.tech | bash -s -- --dev
|
2021-06-03 07:43:44 +00:00
|
|
|
|
|
|
|
ENTRYPOINT ["/root/.local/bin/abra"]
|