forked from wernight/docker-mopidy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Details each command during builds.
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,15 @@ FROM debian:jessie | |
MAINTAINER Werner Beroux <[email protected]> | ||
|
||
# Default configuration | ||
ADD mopidy.conf /var/lib/mopidy/.config/mopidy/mopidy.conf | ||
COPY mopidy.conf /var/lib/mopidy/.config/mopidy/mopidy.conf | ||
|
||
# Start helper script | ||
ADD entrypoint.sh /entrypoint.sh | ||
COPY entrypoint.sh /entrypoint.sh | ||
|
||
# Official Mopidy install for Debian/Ubuntu along with some extensions | ||
# (see https://docs.mopidy.com/en/latest/installation/debian/ ) | ||
RUN apt-get update \ | ||
RUN set -e \ | ||
&& apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \ | ||
curl \ | ||
gstreamer0.10-alsa \ | ||
|