1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-01 03:01:29 +00:00
dockerfiles/owncast/arm64/Dockerfile

21 lines
474 B
Docker
Raw Normal View History

2021-02-01 05:39:06 +00:00
#
# Dockerfile for owncast-arm
#
2022-02-02 03:08:12 +00:00
FROM alpine:3
2021-02-01 05:39:06 +00:00
MAINTAINER EasyPi Software Foundation
2022-03-07 05:26:29 +00: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 05:39:06 +00:00
WORKDIR /app
RUN set -xe \
2022-02-02 03:08:12 +00:00
&& apk add --no-cache curl ffmpeg ffmpeg-libs gcompat \
2021-05-17 03:12:49 +00:00
&& curl -sSLO ${OWNCAST_URL} \
&& unzip ${OWNCAST_FILE} \
&& rm ${OWNCAST_FILE}
2021-02-01 05:39:06 +00:00
CMD ["/app/owncast"]