mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
9 lines
169 B
Docker
9 lines
169 B
Docker
FROM alpine:latest
|
|
|
|
ARG ARCH
|
|
|
|
RUN apk update && apk add duplicity curl
|
|
ADD ./target/$ARCH-unknown-linux-musl/release/compat /usr/local/bin/compat
|
|
|
|
ENTRYPOINT ["compat"]
|