Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Details each command during builds.
  • Loading branch information
wernight committed Apr 4, 2016
1 parent a7909da commit d3f6395
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit d3f6395

Please sign in to comment.