10 lines
174 B
Docker
10 lines
174 B
Docker
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk add --no-cache curl bash
|
||
|
|
||
|
RUN mkdir -p ~./local/bin
|
||
|
|
||
|
RUN curl https://install.abra.coopcloud.tech | bash -s
|
||
|
|
||
|
ENTRYPOINT ["/root/.local/bin/abra"]
|