Do not error on dpkg missing dependencies.

This commit is contained in:
Ed Plese 2015-07-06 20:08:19 -05:00
parent 43db101138
commit 1bdd46018f
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ RUN dpkg --add-architecture i386 && \
# Install Skype
RUN curl http://download.skype.com/linux/skype-debian_4.3.0.37-1_i386.deb > /usr/src/skype.deb && \
dpkg -i /usr/src/skype.deb && \
dpkg --force-depends -i /usr/src/skype.deb && \
apt-get install -fy \
&& rm -rf /var/lib/apt/lists/*