mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
7 lines
172 B
Docker
7 lines
172 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk update && apk add duplicity && apk add curl
|
|
ADD ./target/aarch64-unknown-linux-musl/release/compat /usr/local/bin/compat
|
|
|
|
ENTRYPOINT ["compat"]
|