You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-06-14 23:55:02 +02:00
upgrade owncast to 0.0.7
This commit is contained in:
@ -1,4 +1,4 @@
|
|||||||
version: '3.7'
|
version: '3.8'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
|
@ -5,17 +5,17 @@
|
|||||||
FROM arm32v7/alpine:3
|
FROM arm32v7/alpine:3
|
||||||
MAINTAINER EasyPi Software Foundation
|
MAINTAINER EasyPi Software Foundation
|
||||||
|
|
||||||
ENV OWNCAST_VERSION=0.0.5
|
ENV OWNCAST_VERSION=0.0.7
|
||||||
ENV OWNCAST_FILE=owncast-$OWNCAST_VERSION-linux-arm7.zip
|
ENV OWNCAST_FILE=owncast-${OWNCAST_VERSION}-linux-arm7.zip
|
||||||
ENV OWNCAST_URL=https://github.com/owncast/owncast/releases/download/v$OWNCAST_VERSION/$OWNCAST_FILE
|
ENV OWNCAST_URL=https://github.com/owncast/owncast/releases/download/v${OWNCAST_VERSION}/${OWNCAST_FILE}
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
RUN set -xe \
|
RUN set -xe \
|
||||||
&& apk add --no-cache curl ffmpeg ffmpeg-libs \
|
&& apk add --no-cache curl ffmpeg ffmpeg-libs \
|
||||||
&& ln -s /lib/libc.musl-armv7.so.1 /lib/ld-linux-armhf.so.3 \
|
&& ln -s /lib/libc.musl-armv7.so.1 /lib/ld-linux-armhf.so.3 \
|
||||||
&& curl -sSLO $OWNCAST_URL \
|
&& curl -sSLO ${OWNCAST_URL} \
|
||||||
&& unzip $OWNCAST_FILE \
|
&& unzip ${OWNCAST_FILE} \
|
||||||
&& rm $OWNCAST_FILE
|
&& rm ${OWNCAST_FILE}
|
||||||
|
|
||||||
CMD ["/app/owncast"]
|
CMD ["/app/owncast"]
|
||||||
|
Reference in New Issue
Block a user