1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-22 05:09:36 +02:00

19 lines
414 B
Docker
Raw Normal View History

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