Skip to content

Commit

Permalink
Update to 1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
gravufo authored Feb 15, 2021
1 parent 1a25ddc commit f6810a0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
FROM busybox:latest
MAINTAINER Christian Artin <[email protected]>

ENV version=1.3.0
ENV version=1.3.4

# Download statically compiled murmur and install it to /opt/murmur
RUN mkdir /opt && cd /opt && \
wget https://github.com/mumble-voip/mumble/releases/download/${version}/murmur-static_x86-${version}.tar.bz2 && \
bzcat /opt/murmur-static_x86-${version}.tar.bz2 | tar -x -C /opt -f - && \
rm /opt/murmur-static_x86-${version}.tar.bz2 && \
mv /opt/murmur-static_x86-${version} /opt/murmur && \
adduser -S -u 1000 mumble
addgroup -g 1000 mumble && \
adduser -H -D -S -u 1000 -G mumble mumble

# Read murmur.ini and murmur.sqlite from /data/
VOLUME ["/data"]
Expand Down

0 comments on commit f6810a0

Please sign in to comment.