From a5a8479f77ab18cec4c40484c0b133f9fffc144b Mon Sep 17 00:00:00 2001 From: Balazs Rauznitz Date: Wed, 17 Jun 2015 00:22:12 -0600 Subject: [PATCH] err out if cannot install --- skype/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skype/Dockerfile b/skype/Dockerfile index cf631cd..bae3a68 100644 --- a/skype/Dockerfile +++ b/skype/Dockerfile @@ -21,7 +21,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 || true && \ + dpkg -i /usr/src/skype.deb && \ apt-get install -fy \ && rm -rf /var/lib/apt/lists/*