This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
abra/Dockerfile

21 lines
461 B
Docker

FROM alpine:latest
RUN apk add --no-cache \
bash \
curl \
git \
jq \
py3-requests \
skopeo \
util-linux \
yq
RUN mkdir -p ~./local/bin
# 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
ENTRYPOINT ["/root/.local/bin/abra"]