Skip to content

Instantly share code, notes, and snippets.

@mmack
Created October 1, 2013 13:55
Show Gist options
  • Save mmack/6778812 to your computer and use it in GitHub Desktop.
Save mmack/6778812 to your computer and use it in GitHub Desktop.
FROM base:latest
# installation of packages
RUN apt-get update
RUN apt-get install -y xorg openbox x11vnc libav-tools libnspr4
# https://github.com/dotcloud/docker/issues/1024
RUN dpkg-divert --local --rename --add /sbin/initctl && ln -s /bin/true /sbin/initctl
RUN apt-get install -y alsa-base pulseaudio pulseaudio-utils
RUN apt-get install -y gstreamer0.10-pulseaudio libsdl1.2debian
RUN alsa force-reload
@mmack
Copy link
Author

mmack commented Oct 1, 2013

Gives me this Error:

Unloading ALSA sound driver modules: snd-dummy snd-pcm snd-page-alloc snd-seq-midi snd-seq-midi-event snd-rawmidi snd-seq snd-seq-device snd-timer (failed: modules still loaded: snd-dummy snd-pcm snd-page-alloc snd-seq-midi snd-seq-midi-event snd-rawmidi snd-seq snd-seq-device snd-timer).
Loading ALSA sound driver modules: snd-dummy snd-pcm snd-page-alloc snd-seq-midi snd-seq-midi-event snd-rawmidi snd-seq snd-seq-device snd-timerFATAL: Could not load /lib/modules/3.8.0-19-generic/modules.dep: No such file or directory
FATAL: Could not load /lib/modules/3.8.0-19-generic/modules.dep: No such file or directory
FATAL: Could not load /lib/modules/3.8.0-19-generic/modules.dep: No such file or directory
FATAL: Could not load /lib/modules/3.8.0-19-generic/modules.dep: No such file or directory
FATAL: Could not load /lib/modules/3.8.0-19-generic/modules.dep: No such file or directory
FATAL: Could not load /lib/modules/3.8.0-19-generic/modules.dep: No such file or directory
FATAL: Could not load /lib/modules/3.8.0-19-generic/modules.dep: No such file or directory
FATAL: Could not load /lib/modules/3.8.0-19-generic/modules.dep: No such file or directory
FATAL: Could not load /lib/modules/3.8.0-19-generic/modules.dep: No such file or directory
 (failed).
Error build: The command [/bin/sh -c alsa force-reload] returned a non-zero code: 1
The command [/bin/sh -c alsa force-reload] returned a non-zero code: 1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment