-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
|