-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (32 loc) · 861 Bytes
/
Dockerfile
File metadata and controls
32 lines (32 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM ubuntu:19.10
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y \
build-essential \
gettext \
openssl \
software-properties-common \
apt-transport-https \
curl \
gnupg2 \
python3 \
python3-pip
RUN curl -k "https://apt.mopidy.com/mopidy.gpg" | apt-key add -
RUN curl -k "https://apt.mopidy.com/buster.list" > /etc/apt/sources.list.d/mopidy.list
RUN apt-get update && \
apt-get install -y \
mopidy \
mopidy-local \
mopidy-local-sqlite \
mopidy-mpd \
mopidy-podcast \
mopidy-podcast-itunes \
mopidy-scrobbler \
mopidy-somafm \
mopidy-soundcloud \
mopidy-spotify \
mopidy-tunein
RUN mkdir -p /data/music
EXPOSE 6680 6600
CMD ["/usr/bin/mopidy"]