From 528c838e6a4ef4676c428c5b1a10350f7c67891e Mon Sep 17 00:00:00 2001 From: Adrian Malacoda <adrian.malacoda@monarch-pass.net> Date: Sat, 28 Jul 2018 13:03:33 -0500 Subject: [PATCH] correct shebang --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3f2662c..1f16d17 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN apk add --no-cache -t build-deps make gcc g++ python ca-certificates libc-de && cd / \ && rm -rf /tmp/* \ && apk del build-deps \ - && sh -c 'cd /build/tools; for TOOL in *.js; do LINK="/usr/bin/$(basename $TOOL .js)"; echo -e "#/bin/sh\nnode /build/tools/$TOOL \$@" > $LINK; chmod +x $LINK; done' + && sh -c 'cd /build/tools; for TOOL in *.js; do LINK="/usr/bin/$(basename $TOOL .js)"; echo -e "#!/bin/sh\nnode /build/tools/$TOOL \$@" > $LINK; chmod +x $LINK; done' ENV NODE_ENV=production -- GitLab