Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
dockerfiles/skype/Dockerfile
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
48 lines (39 sloc)
1.16 KB
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
# Run skype in a container, requires pulseaudio | |
# (but I have a container for that) | |
# | |
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \ | |
# -v $HOME/.Skype:/home/skype/.Skype \ | |
# -e DISPLAY=unix$DISPLAY \ | |
# --link pulseaudio:pulseaudio \ | |
# -e PULSE_SERVER=pulseaudio \ | |
# --device /dev/video0 \ | |
# --name skype \ | |
# jess/skype | |
# | |
FROM debian:bullseye-slim | |
# Tell debconf to run in non-interactive mode | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN apt-get update && apt-get install -y \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
gnupg \ | |
procps \ | |
--no-install-recommends | |
# Add the skype debian repo | |
RUN curl -sSL https://repo.skype.com/data/SKYPE-GPG-KEY | apt-key add - | |
RUN echo "deb [arch=amd64] https://repo.skype.com/deb stable main" > /etc/apt/sources.list.d/skype.list | |
RUN apt-get update && apt-get -y install \ | |
skypeforlinux \ | |
--no-install-recommends \ | |
&& rm -rf /var/lib/apt/lists/* | |
COPY run-skype-and-wait-for-exit /usr/local/bin | |
# Make a user | |
ENV HOME /home/skype | |
RUN useradd --create-home --home-dir $HOME skype \ | |
&& chown -R skype:skype $HOME \ | |
&& usermod -a -G audio,video skype | |
WORKDIR $HOME | |
USER skype | |
# Start Skype | |
ENTRYPOINT ["run-skype-and-wait-for-exit"] | |