From 301e50cbfa7ace6128ec68dde505e9bea0268d45 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Sun, 2 Oct 2016 23:10:26 -0700 Subject: [PATCH] Remove -e from echo, as it gets emitted by BusyBox echo command. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f9d43a0..ca681a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN GITHUB_REPO="https://github.com/mattn/goreman" \ && tar -xvzf goreman.tar.gz && mv /goreman_linux_amd64/goreman /usr/local/bin/goreman && rm -R goreman* # goreman setup -RUN echo -e "web: gosu dummy /bin/busybox httpd -f -p 8080 -h /webui-aria2\nbackend: gosu dummy /usr/bin/aria2c --enable-rpc --rpc-listen-all --dir=/data" > Procfile +RUN echo "web: gosu dummy /bin/busybox httpd -f -p 8080 -h /webui-aria2\nbackend: gosu dummy /usr/bin/aria2c --enable-rpc --rpc-listen-all --dir=/data" > Procfile EXPOSE 8080 6800 CMD ["goreman", "start"]