mirror of
https://github.com/mikenye/docker-picard.git
synced 2026-04-23 09:15:35 +02:00
19 lines
593 B
Docker
19 lines
593 B
Docker
FROM jlesage/baseimage-gui:ubuntu-18.04
|
|
|
|
RUN apt-get update -y && \
|
|
apt-get install -y locales software-properties-common && \
|
|
add-apt-repository -y ppa:musicbrainz-developers/stable && \
|
|
apt-get install -y picard && \
|
|
echo "#!/bin/sh" >> /startapp.sh && \
|
|
echo "export HOME=/config" >> /startapp.sh && \
|
|
echo "/usr/bin/picard -N" >> /startapp.sh && \
|
|
chmod a+x /startapp.sh && \
|
|
locale-gen en_US.UTF-8 && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV APP_NAME="MusicBrainz Picard" \
|
|
LC_ALL="en_US.UTF-8" \
|
|
LANG="en_US.UTF-8" \
|
|
LANGUAGE="en_US.UTF-8"
|
|
|