From a7acb77889326a2044eb7fd777650d71822ee590 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Thu, 14 Dec 2017 08:26:09 -0800 Subject: [PATCH] fix empty continuation line docker error I believe this is actually a bug in docker but it's easier to fix it ourselves here. License: MIT Signed-off-by: Steven Allen --- Dockerfile.fast | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile.fast b/Dockerfile.fast index 28dd292b8..9b7142236 100644 --- a/Dockerfile.fast +++ b/Dockerfile.fast @@ -44,8 +44,7 @@ RUN set -x \ && cd /tmp \ && wget -q -O tini https://github.com/krallin/tini/releases/download/$TINI_VERSION/tini \ && chmod +x tini \ - # Install them - && mv su-exec/su-exec tini /sbin/ + && mv su-exec/su-exec tini /sbin/ # Install them # Ports for Swarm TCP, Swarm uTP, API, Gateway, Swarm Websockets EXPOSE 4001