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

21 lines
474 B
Docker
Raw Normal View History

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