Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions x11-novnc-skype/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
FROM phusion/baseimage:0.9.18
FROM phusion/baseimage:0.9.22

# Set correct environment variables
ENV HOME /root
ENV DEBIAN_FRONTEND noninteractive
ENV LC_ALL C.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
ENV TZ=US/Pacific
#ENV TZ=US/Pacific
ENV SCREEN_RESOLUTION 1280x900
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

# Installing apps
RUN apt-get update && apt-get -y install \
xvfb \
x11vnc \
supervisor \
fluxbox \
git-core \
git

# Obtain Skype
RUN curl -s 'https://repo.skype.com/latest/skypeforlinux-64.deb' -o /root/skype.deb && \
dpkg -i /root/skype.deb || true && \
apt-get install -fy && \
rm /root/skype.deb
#RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

# install skypeforlinux
RUN apt-get update && \
curl https://repo.skype.com/data/SKYPE-GPG-KEY | apt-key add - && \
echo "deb [arch=amd64] https://repo.skype.com/deb stable main" | \
tee /etc/apt/sources.list.d/skypeforlinux.list && \
apt-get update && \
apt-get install -y skypeforlinux=8.15.0.4 \
xvfb \
x11vnc \
supervisor \
fluxbox \
git-core \
git \
apt-transport-https

# House cleaning
RUN apt-get autoclean
Expand Down