1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:17:06 +02:00

21 lines
474 B
Docker
Raw Normal View History

2021-02-01 13:39:06 +08:00
#
# Dockerfile for owncast-arm
#
2022-02-02 11:08:12 +08:00
FROM alpine:3
2021-02-01 13:39:06 +08:00
MAINTAINER EasyPi Software Foundation
2022-03-07 13:26:29 +08:00
ARG OWNCAST_VERSION=0.0.11
ARG OWNCAST_FILE=owncast-${OWNCAST_VERSION}-linux-arm64.zip
ARG OWNCAST_URL=https://github.com/owncast/owncast/releases/download/v${OWNCAST_VERSION}/${OWNCAST_FILE}
2021-02-01 13:39:06 +08:00
WORKDIR /app
RUN set -xe \
2022-02-02 11:08:12 +08:00
&& apk add --no-cache curl ffmpeg ffmpeg-libs gcompat \
2021-05-17 11:12:49 +08:00
&& curl -sSLO ${OWNCAST_URL} \
&& unzip ${OWNCAST_FILE} \
&& rm ${OWNCAST_FILE}
2021-02-01 13:39:06 +08:00
CMD ["/app/owncast"]