dockerfiles/skype/Dockerfile

30 lines
831 B
Docker
Raw Normal View History

2015-01-01 21:42:14 +01:00
# Run skype in a container
#
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
# -v /dev/snd:/dev/snd \
# -e DISPLAY=unix$DISPLAY \
2015-06-17 03:15:39 +02:00
# -e PULSE_SERVER=$(ip addr show eth0 | awk '/inet/ {print $2}' | cut -d/ -f1 |head -1) \ # or however you get your local address
# jess/skype
2015-01-01 21:42:14 +01:00
#
2014-12-22 23:40:49 +01:00
FROM debian:jessie
# Tell debconf to run in non-interactive mode
ENV DEBIAN_FRONTEND noninteractive
# Setup multiarch because Skype is 32bit only
# Make sure the repository information is up to date
2015-01-01 21:42:14 +01:00
RUN dpkg --add-architecture i386 && \
apt-get update && apt-get install -y \
curl \
--no-install-recommends
2014-12-22 23:40:49 +01:00
# Install Skype
RUN curl http://download.skype.com/linux/skype-debian_4.3.0.37-1_i386.deb > /usr/src/skype.deb && \
2015-06-17 08:22:12 +02:00
dpkg -i /usr/src/skype.deb && \
apt-get install -fy \
&& rm -rf /var/lib/apt/lists/*
2014-12-22 23:40:49 +01:00
2015-01-01 21:42:14 +01:00
# Start Skype
ENTRYPOINT ["skype"]