From 45a2b5594be33a7980b5c5e57c4cc5d272b8947a Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Sun, 8 Jul 2018 10:17:22 -0400 Subject: [PATCH] unifi: fix #394 Signed-off-by: Jess Frazelle --- unifi/Dockerfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/unifi/Dockerfile b/unifi/Dockerfile index 1929463..e8bc914 100644 --- a/unifi/Dockerfile +++ b/unifi/Dockerfile @@ -85,18 +85,13 @@ RUN apt-get update && apt-get install -y \ ENV UNIFI_VERSION "5.8.24" # install unifi -RUN buildDeps=' \ +RUN apt-get update && apt-get install -y \ curl \ - ' \ - set -x \ - && apt-get update && apt-get install -y \ - $buildDeps \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/* \ && curl -o /tmp/unifi.deb -L "http://dl.ubnt.com/unifi/${UNIFI_VERSION}/unifi_sysvinit_all.deb" \ && dpkg -i /tmp/unifi.deb \ && rm -rf /tmp/unifi.deb \ - && apt-get purge -y $buildDeps \ && echo "Build complete." WORKDIR /config