From c0ce433bddf27a947ae3d6eec4426b7b01e86ce0 Mon Sep 17 00:00:00 2001 From: Mike Nye Date: Tue, 14 Apr 2020 08:35:46 +0800 Subject: [PATCH] Add Firefox --- Dockerfile | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index cef6319..7f54158 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,19 @@ FROM jlesage/baseimage-gui:ubuntu-18.04 RUN set -x && \ - apt-get update -y && \ - echo "========== Japanese font support (github issue #2) ==========" && \ - apt-get install -y fonts-takao fonts-takao-mincho && \ - echo "=============================================================" && \ - apt-get install -y locales software-properties-common && \ + apt-get update && \ + apt-get install -y --no-install-recommends \ + firefox \ + fonts-takao \ + fonts-takao-mincho \ + locales \ + software-properties-common \ + && \ add-apt-repository -y ppa:musicbrainz-developers/stable && \ - apt-get install -y picard && \ + apt-get update && \ + apt-get install -y \ + picard \ + && \ echo "#!/bin/sh" >> /startapp.sh && \ echo "export HOME=/config" >> /startapp.sh && \ echo "/usr/bin/picard -N" >> /startapp.sh && \ @@ -23,4 +29,4 @@ ENV APP_NAME="MusicBrainz Picard" \ LC_ALL="en_US.UTF-8" \ LANG="en_US.UTF-8" \ LANGUAGE="en_US.UTF-8" - + \ No newline at end of file