mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
20 lines
431 B
Docker
20 lines
431 B
Docker
|
#
|
||
|
# Dockerfile for aircast-arm64
|
||
|
#
|
||
|
|
||
|
FROM alpine:3
|
||
|
MAINTAINER EasyPi Software Foundation
|
||
|
|
||
|
ARG APP_OS=linux
|
||
|
ARG APP_ARCH=aarch64
|
||
|
ARG APP_FILE=aircast-${APP_OS}-${APP_ARCH}-static
|
||
|
ARG APP_URL=https://github.com/philippe44/AirConnect/raw/master/bin/${APP_FILE}
|
||
|
|
||
|
RUN set -xe \
|
||
|
&& apk add --no-cache curl \
|
||
|
&& curl -sSL -o /usr/local/bin/aircast ${APP_URL} \
|
||
|
&& chmod +x /usr/local/bin/aircast \
|
||
|
&& aircast -t
|
||
|
|
||
|
CMD ["aircast", "-Z"]
|