FROM jlesage/baseimage-gui:ubuntu-18.04 RUN set -x && \ 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 update && \ apt-get install -y \ picard \ && \ locale-gen en_US.UTF-8 && \ mkdir -p /tmp/run/user/app && \ chmod 0700 /tmp/run/user/app && \ update-alternatives --install /usr/bin/x-www-browser x-www-browser /usr/bin/firefox 200 && \ echo "========== Clean-up ==========" && \ apt-get autoremove -y && \ rm -rf /var/lib/apt/lists/* COPY startapp.sh /startapp.sh ENV APP_NAME="MusicBrainz Picard" \ LC_ALL="en_US.UTF-8" \ LANG="en_US.UTF-8" \ LANGUAGE="en_US.UTF-8"