Skip to content
troyfolger edited this page Jan 23, 2015 · 1 revision

Welcome to the docker-spotify-pulseaudio wiki!

User Contributions / Comments / Tips

Dockerfile build error: "Error: ENV must have two arguments"

The Dockerfile as of this writing doesn't build with Docker 1.3, I think the ENV semantic changed. The current Dockerfile uses an '=' to separate the variable and value on the ENV statement ... omitting the '=' fixes it.

I updated the Dockerfile as follows:

ENV PULSE_SERVER /run/pulse/native

... and re-ran the build command, and the Docker successfully built.