diff --git a/Dockerfile b/Dockerfile
index 3f2662cda92fb22c7a968accc50269694d6c43a4..1f16d17450cf0042d031f4250916fab1d2a84d17 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