From 14278f8b62c206eb4cdfaea37e49f77099cbc2b2 Mon Sep 17 00:00:00 2001 From: ant Kenworthy Date: Thu, 23 Jul 2020 23:15:11 +0100 Subject: [PATCH] Upgrade to Ubuntu 20.04 Removed `--no-install-recommends` to install supporting packages to make it work again Switched away from PPA for hollywood as handled by ubuntu sources --- hollywood/Dockerfile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/hollywood/Dockerfile b/hollywood/Dockerfile index 866a016e3..f988c4e2d 100644 --- a/hollywood/Dockerfile +++ b/hollywood/Dockerfile @@ -1,17 +1,11 @@ -FROM ubuntu:16.04 +FROM ubuntu:20.04 LABEL maintainer "Jessie Frazelle " -RUN apt-get update && apt-get install -y \ - software-properties-common \ - --no-install-recommends && \ - add-apt-repository ppa:hollywood/ppa && \ - apt-get update && \ - apt-get install -y \ +RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ byobu \ hollywood \ locate \ mlocate \ - --no-install-recommends \ && rm -rf /var/lib/apt/lists/* \ && updatedb