Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-02-13MAINT(docker): added missing sql driverChessmaster
Closes #4755
2020-12-02MAINT: Reduce Docker size imageJustin Goette
Running rm [...] in a separate RUN command inside the Dockerfile does not have the desired effect due to the way Docker layers work (see https://cloud.google.com/solutions/best-practices-for-building-containers#reduce_the_amount_of_clutter_in_your_image)
2020-11-29MAINT: Don't install qtcreator via DockerfileRobert Adam
The Qt Creator IDE should not be needed in the Docker image at all.
2020-11-29MAINT: Fix DockerfileRobert Adam
The Dockerfile contained instructions at the wrong position causing it to not work properly (it didn't install the necessary dependencies). Fixes #4600
2020-11-21MAINT: Potentially reduce Docker container sizeJustin Goette
Add "--no-install-recommends" and "rm -rf /var/lib/apt/lists/*" for potential image size reduction. See: https://ubuntu.com/blog/we-reduced-our-docker-images-by-60-with-no-install-recommends https://cloud.google.com/solutions/best-practices-for-building-containers#reduce_the_amount_of_clutter_in_your_image
2020-10-29MAINT(docker): Add ca-certificates packageRobert Adam
As requested in #4549 this commit adds the ca-certificates package to the Dockerfile in order to use Certified Authorities with Mumble. Fixes #4549
2020-10-05BUILD(docker): Updated Dockerfile to use CMakeBartosz Zieba
The change fixes issue #4514. Change was required, because we moved Mumble project to CMake, but Dockerfile was not updated and did not want to build. Fixes #4514
2020-04-18Dockerfile: use regex for protobuf and grpc package nameshwipl
The latest Ubuntu LTS Docker image is version 18.04 and will switch to version 20.04 soon. The package names of libprotobuf and libgrpc differ in version 18.04 and 20.04. As suggested by Bartosz Zieba, this patch uses regex for installing these packages to make the Dockerfile work with both LTS versions. Co-authored-by: Bartosz Zieba <bartosz@zieba.pro> Signed-off-by: hwipl <33433250+hwipl@users.noreply.github.com>
2020-04-18Dockerfile: update ubuntu version to latesthwipl
Building a docker image with the current Dockerfile seems to run into issues caused by not finding files on the Ubuntu disco repositories anymore. So, this patch updates the Ubuntu version in the Dockerfile from disco to latest. Signed-off-by: hwipl <33433250+hwipl@users.noreply.github.com>
2019-05-09Build/package murmur in a docker imageGraeme Lawes
Built in ubuntu:disco, packed in clean ubuntu:disco image with runtime dependencies using multistage build Resolves #3688 Signed-off-by: Graeme Lawes <graemelawes@gmail.com>