Murmur upgraded to 1.3.0 release. Alpine upgraded to 3.11 (and set to follow latest release on build).

This commit is contained in:
Alexey Skobkin 2020-03-25 02:36:08 +03:00
parent 555958b829
commit bb8577366a
No known key found for this signature in database
GPG Key ID: 5D5CEF6F221278E7
1 changed files with 4 additions and 8 deletions

View File

@ -1,6 +1,5 @@
FROM alpine:3.8
FROM alpine:3
ARG BUILD_DATE
ARG VERSION
LABEL \
@ -9,18 +8,15 @@ LABEL \
org.label-schema.name="Murmur Server (official static 32-bit build)" \
org.label-schema.version=$VERSION \
org.label-schema.vcs-url="https://skobkin@bitbucket.org/skobkin/docker-murmur-official-static-image.git" \
org.label-schema.build-date=$BUILD_DATE \
org.label-schema.license="MIT" \
org.label-schema.schema-version="1.0"
WORKDIR /opt/murmur
RUN set -x \
&& apk add -q --no-cache --virtual .build-deps \
curl \
&& apk add -q --no-cache \
bash shadow tzdata \
&& curl -sSL https://mumble.info/snapshot/murmur-static_x86-${VERSION}.tar.bz2 -o /tmp/murmur.tar.bz2 \
&& apk add -q --no-cache --virtual .build-deps curl \
&& apk add -q --no-cache shadow tzdata \
&& curl -sSL https://github.com/mumble-voip/mumble/releases/download/${VERSION}/murmur-static_x86-${VERSION}.tar.bz2 -o /tmp/murmur.tar.bz2 \
&& tar -jx -f /tmp/murmur.tar.bz2 --strip-components=1 -C /opt/murmur \
&& mkdir -p /ssl \
&& mkdir -p /config \