abra/Dockerfile

21 lines
461 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
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"]