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
diff options
context:
space:
mode:
authorhwipl <33433250+hwipl@users.noreply.github.com>2020-04-17 22:16:33 +0300
committerhwipl <33433250+hwipl@users.noreply.github.com>2020-04-18 12:49:25 +0300
commitd75efe0eac8527c8d51d94754442d7063e4b5e01 (patch)
tree2dfae03ef9e56942272cc792a2d855995522fdee /Dockerfile
parent2c22eec08525d88cf275b4bc4a1a4bc671409ff2 (diff)
Dockerfile: update ubuntu version to latest
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>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 08c117dc4..a2bafd30f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM ubuntu:disco
+FROM ubuntu:latest
# needed to install tzdata in disco
ENV DEBIAN_FRONTEND=noninteractive
@@ -33,7 +33,7 @@ RUN qmake -recursive main.pro CONFIG+="no-client grpc"
RUN make release
# Clean distribution stage
-FROM ubuntu:disco
+FROM ubuntu:latest
RUN adduser murmur
RUN apt-get update && apt-get install -y \