1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-03 00:33:55 +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
2021-10-11 05:48:48 +00:00
ENV OWNCAST_VERSION=0.0.10
2022-02-02 03:08:12 +00:00
ENV OWNCAST_FILE=owncast-${OWNCAST_VERSION}-linux-arm64.zip
2021-05-17 03:12:49 +00:00
ENV 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"]