1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/aircast-arm64/Dockerfile

19 lines
414 B
Docker
Raw Normal View History

2023-07-19 12:12:50 +02:00
#
# 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} \
2023-07-19 12:21:33 +02:00
&& chmod +x /usr/local/bin/aircast
2023-07-19 12:12:50 +02:00
CMD ["aircast", "-Z"]