mirror of
https://github.com/chipsenkbeil/distant.git
synced 2024-10-30 21:20:24 +00:00
14 lines
482 B
Docker
14 lines
482 B
Docker
FROM alpine:3
|
|
|
|
# Install curl so we can download the distant binary
|
|
RUN apk add --no-cache curl
|
|
|
|
# 1. Specify the distant version
|
|
# 2. Download the MUSL artifact as alpine uses musl
|
|
# 3. Make the binary executable
|
|
ARG distant_version=0.16.4
|
|
ARG distant_url=https://github.com/chipsenkbeil/distant/releases/download/v${distant_version}/distant-linux64-musl
|
|
RUN curl -L ${distant_url} > /usr/local/bin/distant && chmod +x /usr/local/bin/distant
|
|
|
|
ENTRYPOINT ["/usr/local/bin/distant"]
|