From 0ba8534696742f2975cb0effeedcbdfafee53529 Mon Sep 17 00:00:00 2001 From: Yoshihiro TAKAHARA Date: Tue, 14 Jul 2015 06:24:24 +0900 Subject: [PATCH] update startscript.sh in Dockerfile. "set-e" to "set -e" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index de3d39c..b2690e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,7 +51,7 @@ RUN cd /home/ethnetintel &&\ npm install &&\ npm install -g pm2 -RUN echo '#!/bin/bash\nset-e\n\ncd /home/ethnetintel/eth-net-intelligence-api\n/usr/bin/pm2 start ./app.json\ntail -f \ +RUN echo '#!/bin/bash\nset -e\n\ncd /home/ethnetintel/eth-net-intelligence-api\n/usr/bin/pm2 start ./app.json\ntail -f \ /home/ethnetintel/.pm2/logs/node-app-out-0.log' > /home/ethnetintel/startscript.sh RUN chmod +x /home/ethnetintel/startscript.sh &&\